RE: cfloop conditional help

2006-08-25 Thread Everett, Al \(NIH/NIGMS\) [C]
CF-Talk Subject: cfloop conditional help I want to loop over a URL.VIDEO_ID value and find the numeric range it falls in. The value range needs to be between 1-10 or 11-21 etc. until the condition is met. EXAMPLE: if the URL.VIDEO_ID value is 72 I would want to cfloop until I found the range tha

Re: cfloop conditional help

2006-08-25 Thread RichL
from how i understood this the loop was only being used to ascertain the final range start and end values? if you are using int/ceiling to find these out - then the looping isn't necessary ? On 8/25/06, Gert Franz <[EMAIL PROTECTED]> wrote: > > > > > > > > Greetings / Grüsse > Gert Fran

Re: cfloop conditional help

2006-08-25 Thread Gert Franz
Greetings / Grüsse Gert Franz Customer Care [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deutsch: http://de.groups.yahoo.com/group/railo/ english: http://groups.yahoo.com/group/railo_talk/ [EMAIL PROTECTED] schrieb: > I want to loop over

Re: cfloop conditional help

2006-08-25 Thread RichL
this should work if i understand what you are trying to do: On 8/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I want to loop over a URL.VIDEO_ID value and find the numeric range it > falls in. > The value range needs to be between 1-10 or 11-21 etc. until the condition > is met.

Re: cfloop conditional help

2006-08-25 Thread srinivas ganta
Hi Try this start=(url.vedio_id/10)*10+1 end=((url.vedio_id/10)+1)*10 Srinivas On 8/25/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I want to loop over a URL.VIDEO_ID value and find the numeric range it > falls in. > The value range needs to be between 1-10 or 11-21 etc. until the condi

cfloop conditional help

2006-08-25 Thread coldfusion . developer
I want to loop over a URL.VIDEO_ID value and find the numeric range it falls in. The value range needs to be between 1-10 or 11-21 etc. until the condition is met. EXAMPLE: if the URL.VIDEO_ID value is 72 I would want to cfloop until I found the range that this 72 value fit and then set variab