I should add, this is CF9. If you are using a version of CF that doesn't have cfcontinue you will have to go about it a different way. If it's really just as simple as meeting the two conditions to skip the current iteration you could just set a var.
pseudo: var doContinue=false if condition1 and condition2 -> set doContinue = true if not doContinue -> do rest of code hth On Mon, Jan 31, 2011 at 11:40 AM, Michael Grant <[email protected]> wrote: > <cfif LTE someCondition1> >> <cfif GT someCondition2> >> <!--- Code here ---> >> > > <cfcontinue /> > > >> </cfif> >> </cfif> > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:341721 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

