LOOP FOR NEXT FROM BOTTOM to the top

User avatar
sal21
PlatinumLounger
Posts: 4364
Joined: 26 Apr 2010, 17:36

LOOP FOR NEXT FROM BOTTOM to the top

Post by sal21 »

peraphs stupid question...

I need to loop with a for next this:

for x =851 to 855

next x

but i need to loop from 855 to 851

User avatar
HansV
Administrator
Posts: 78549
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: LOOP FOR NEXT FROM BOTTOM to the top

Post by HansV »

Use

For x = 855 To 851 Step -1
Best wishes,
Hans