Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello,
how can i jump 10 numbers using for loop like this one??
for i = 10 to 40;
load Date(PeriodDate,'DD/MM/YYYY') as PeriodDate, $(i) as [Chart Account], 0 as AMOUNTUSD
resident TempCalendar order by PeriodDate Asc;NEXT
You can use STEP with the FOR loop. Something like:
for i = 10 to 40 step 10
Is this what you are looking for?