Are there tags for Hour and Minute with separate digits?
Example:
10:15 = TagH1 TagH2 : TagM1 TagM2
Thanks
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# If you would like to have separated Step Digits here is a Mini Tutorial
Trying to do this in 12h format - this seems to give the time in 24h only. Any tips on what the tags are for 12h?
Did you find the answer there . Different Tags for 12 / 24 and UTC .
There is a tag that reads the user setting so it can be swapped by them .