i understand that if you want to use a for loop and want to increment in steps of 1 you use the following

For i = 1 To 5
...
Next i

However how do i program it if i wish to increment nackwards in steps of -1, say from i =5, to i =1 in steps of -1

Please help!!!