RE: $$Excel-Macros$$ Please explain about loop

2011-07-25 Thread Rajan_Verma
See the attached File : Sub FLoop() Dim i As Integer Range("A1").Value = "Example By For Loop" Range("A2").Select For i = 1 To 20 ActiveCell.Value = "i am In For Loop " & i & " time and My value is " & i ActiveCell.Offset(1, 0

Re: $$Excel-Macros$$ Please explain about loop

2011-07-25 Thread neil johnson
Hi Jorge, all loop which used in excel sheet On Mon, Jul 25, 2011 at 9:55 PM, Jorge Marques wrote: > Are you refering to loop while,or loop until? > Hi > > 2011/7/25 neil johnson > >> Hi All, >> >> Please explain loop with real example in sheets . much appreciated if you >> will provide attac

Re: $$Excel-Macros$$ Please explain about loop

2011-07-25 Thread NOORAIN ANSARI
Using Do...Loop Statements Article you can use Do...Loop statements to run a block of statements an indefinite number of times. The statements are repeated either

Re: $$Excel-Macros$$ Please explain about loop

2011-07-25 Thread Jorge Marques
Are you refering to loop while,or loop until? 2011/7/25 neil johnson > Hi All, > > Please explain loop with real example in sheets . much appreciated if you > will provide attached sheet with example of loop . > > Thanks > > -- > >