If DCount is equal to 6 (or multiples thereof)

fat controller

Slightly round the bend..
Local time
Today, 16:33
Joined
Apr 14, 2011
Messages
758
I am looking for a quick way to have a label's property set visible when a DCount is equal to 6, or whole number multiples thereof (so 6, 12, 18, 24 and so on). Doing it for just one of those numbers is easy, but what about the multiples - is there an easy way around it?
 
use the mod operator

if mynumber mod 6= 0 then 'multiple of 6
 
Sorry I am late back to this one, simply haven't stopped this past week or so.

Thanks for the advice, I will hopefully be at a stage to use it shortly. :)
 

Users who are viewing this thread

Back
Top Bottom