Trying to do the following
<CFSET StartLOOP = 1000>
<CFLOOP query="get_in_range_postals" startrow="#startloop# + 1" endrow="#endloop#">
if you notice 'startrow' is the startloop variable defined above Plus 1
How can I write it so that the startrow value is the numeric value in #startloop# + 1 ??
I'm getting an error
Data not supported: value [1000 + 1] is not a number, so it is apparently just passing the string and not actually doing the addition
Do I just need to declare another variable, do the math there, and just use that variable in the loop?
<CFSET StartLOOP = 1000>
<CFLOOP query="get_in_range_postals" startrow="#startloop# + 1" endrow="#endloop#">
if you notice 'startrow' is the startloop variable defined above Plus 1
How can I write it so that the startrow value is the numeric value in #startloop# + 1 ??
I'm getting an error
Data not supported: value [1000 + 1] is not a number, so it is apparently just passing the string and not actually doing the addition
Do I just need to declare another variable, do the math there, and just use that variable in the loop?