View Single Post
  #7   Report Post  
Posted to microsoft.public.excel.programming
musa.biralo musa.biralo is offline
external usenet poster
 
Posts: 55
Default Example from Help also not working.

i totally agree with you it should run like this..

For intI = 0 To 364
curExpense(intI) = 20 + intI
Next

You should get somethinglike
curExpense(0) = 21
curExpense(1) = 22
curExpense(2) = 23
..
..
..
.....
....
What i am seeing when i do the watch window or bookmark and see the
value..i found...something like this...

curExpense(intI) = 20
curExpense(intI) = 21
curExpense(intI) = 22
curExpense(intI) = 23
..
..
..

i don't know why "intl" is not replaced by 0,1,2...and this is the
main problem to me....

musa.biralo