Mar 10, 2006 #1 Dashley Programmer Dec 5, 2002 925 US I want to determin if a record count result is a odd or an even number. Whats the best way to do it.. Is there a function available? Thanks
I want to determin if a record count result is a odd or an even number. Whats the best way to do it.. Is there a function available? Thanks
Mar 10, 2006 #2 DotNetGnat Programmer Mar 10, 2005 5,548 IN 'i= recordset count if i mod 2 = 0 then 'even number else 'odd number above is just a pseudo code... -DNG Upvote 0 Downvote
'i= recordset count if i mod 2 = 0 then 'even number else 'odd number above is just a pseudo code... -DNG