Minute hand rotation

I am attempting to make a minute hand that moves around the dial in 5 minute increments. so between 00 and 05(or 4.9) minutes it is at the 12 o’clock position, 05-10 its in the 1 o’clock position and so on. I’ve use #DWFM#*5 and it gives me the desired movement but does it every minute instead of every 5.

That should work:
(30*floor(#Dm#/5))

Divide the “minutes in the hours” by 5.
Floor it to get the integer division (i.e. how many complete sections of 5 minutes have passed in this hour)
Multiply by 30 degrees per section of 5 minutes.

Have fun!
P.

1 Like

Looks like it works. thank you