Thanks Ray. That solved the problem. This is part of a problem that you helped me with recently, concerning date ranges. I'm able to get the dates to output into a table with one celll, but there is another value coming from the query that I would usually get just by <cfoutput query=... I'm not doing that here, so I'm unclear about how to include the other value in the second cell of each row. Thanks.
On Wed, May 22, 2013 at 3:03 PM, Raymond Camden <[email protected]>wrote: > > Code 1 creates an array of date values. > > Code 2 creates a 2D array. On row one of the output query, you do > > <cfset dates[1][1] = X> > > You probably want > > <cfset dates[currentrow] = holidayDate> > > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:6075 Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-newbie/unsubscribe.cfm
