View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
mortals mortals is offline
external usenet poster
 
Posts: 11
Default End of data loop

Hi guys,

I need help with this specific macro i've bene tyring to get right.
I've been doing it in my head in pseudo-code but can't seem to figure
out the proper syntax in excel i guess.

I have multiple rows of data and I want to loop through them and insert
specific formules.

In my head, its something like this

integer x=2
while(A(x) is not null) do
C(x) = <formula
D(x) = <formula
E(x) = <formula
x++
end while

Can anyone give me a few pointers?

Thanks in advance