I have a table with a date time field which records the time of a sale. i would like to group my report by 15 minute intervals so i can display what 15 time interval we had the most sales. Appreciate the help.
Take the time of day, and multiply the time portion by 96 (the number of 15 minute intervals in the day) - there are dozens of other possible methods you could come up with.
One starting point - tested:
Code:
?int(now() - int(now() ) * 96) + 1
Greg
"Personally, I am always ready to learn, although I do not always like being taught." - Winston Churchill
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.