Re: $$Excel-Macros$$ Fwd: Practice

2010-10-31 Thread bhavya khanna
Hi, I need your help . i am also making form like this . but what is this object like object.list(row,column) and why we are consider column as zero and one On Wed, Oct 27, 2010 at 2:31 AM, Sergio Abadesso groups.abade...@googlemail.com wrote: Hi Dave, you have to consider that the

Re: $$Excel-Macros$$ Macro to Go From One Cell to Another

2010-10-31 Thread Swapnil Palande
Hi, I am not able to understand ur question. pls make more clear.. and if possible give sample data Regards, Swapnil. On Sat, Oct 30, 2010 at 10:19 PM, MT mtamia...@gmail.com wrote: I have a worksheet called Offering and was wondering how do I make a Macro to go from say cell C35 to E26 on

Re: $$Excel-Macros$$ manage lengthy database

2010-10-31 Thread Rajesh K R
Experts, Pls find the attachment and find a solution, in that filter not working properly in the dates except 10/10/2010 11/10/2010, pls tell me the problem help me to solve it. Regards Rajesh kainikkara On 10/30/10, ashish koul koul.ash...@gmail.com wrote: Sub Macro1()

Re: $$Excel-Macros$$ manage lengthy database

2010-10-31 Thread Rajesh K R
Experts, Pls find the attachment and find a solution, in that filter not working properly in the dates except 10/10/2010 11/10/2010, pls tell me the problem help me to solve it. Regards Rajesh kainikkara On 10/31/10, Rajesh K R rajeshkainikk...@gmail.com wrote:

Re: $$Excel-Macros$$ moving data to another sheet by using vba macro

2010-10-31 Thread ashish koul
try this code see is it helps . Sub Macro1() Dim z As Long Sheets(Tambah).Select Range(A6).Select Range(Selection, Selection.End(xlDown)).Select Range(Selection, Selection.End(xlToRight)).Select Application.CutCopyMode = False Selection.Copy

RE: $$Excel-Macros$$ moving data to another sheet by using vba macro

2010-10-31 Thread Daniel
Hello, Try : Private Sub cmdMove_Click() Dim inCalculationMode As Integer Application.ScreenUpdating = False inCalculationMode = Application.Calculation Application.Calculation = xlCalculationManual Range(A6:I [A65536].End(xlUp).Row).Copy _