Tags for Hour and Minute with separate digits

Are there tags for Hour and Minute with separate digits?

Example:

10:15 = TagH1 TagH2 : TagM1 TagM2

Thanks

There are none.

If you want to get first and second digits of a 2 digit number use this:

(floor(x/10))
(x-((floor(x/10))*10))

Hi! Fairly new user/creator, and I want to use this to make a watch design. Since I am new I don’t know how to use this. Is there any way I can get an explanation on how to use it? Thanks!

Hi @zehherman!

Actually I found tags in the documentation for hours:

#DkZA#
First Digit of the Hour in Day (0-2)

#DkZB#
Second Digit of the Hour in Day (0-9)

#DhZA#
First Digit (12 hour) of the in Day (0-1)

#DhZB#
Second Digit (12 hour) of the in Day (0-9)

For minutes, use just the expression from @Mellin:

First Digit
(floor(#Dm#/10))

Second Digit
(#Dm#-((floor(#Dm#/10))*10))

If you want to “split” seconds, just change #Dm# with #Ds# :wink: If you would like to have separated Step Digits here is a Mini Tutorial :wink:

2 Likes