Great thanks Barny, it works great and performance is perfect Pat
-----Original Message----- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: March 25, 2005 12:56 To: CF-Talk Subject: Re: randomize Like pick one record at random, or display all 50 in a random order? I'm thinking the latter? Here's an idea. Not optimized for speed, or even tested to run properly. <cfset rows = arrayNew(1) /> <cfloop query="myQuery"> <cfset arrayAppend(rows, currentRow) /> </cfloop> <cfloop condition="arrayLen(rows) GT 0"> <cfset index = randRange(1, arrayLen(rows)) /> <cfset row = rows[index] /> <cfset arrayDeleteAt(rows, index) /> #myQuery.question[row]#? </cfloop> cheers, barneyb On Fri, 25 Mar 2005 12:31:51 -0500, CFDEV <[EMAIL PROTECTED]> wrote: > Hi, > > I have a query and i want to display the results randomize at each > load of the page. > > query : > > select questID from quest order by questID > > There is 50 questID. > > I'm under CF5 for this one. > > Thanks > > Pat > -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/ Got Gmail? I have 50 invites. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:200019 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

