Seconds as separate digits

Hi to all

I would have digital seconds represented as separate digits. Someone could suggest to me the right formula?
I use these formulas for hours and minutes:

ADD TEXT :

HOUR FIRST DIGIT = #DkZA#

HOUR SECOND DIGIT = #DkZB#

MINUTES FIRST DIGIT = (floor(#Dm#/10))

MINUTES SECOND DIGIT = (#Dm#-(10*floor(#Dm#/10)))

I would need a formula for seconds. Any help will be much appreciated

Cheers

1 Like

Seconds first digit: (floor(#Ds#/10))
Seconds last digit: (#Ds#%10)

Enjoy

2 Likes

Hi @ThaMattie

Thanks pal. Much appreciated. :grinning:
Cheers

Your welcome. And you can use modulus for minutes second digit as well:
MINUTES SECOND DIGIT = (#Dm#%10)

Hi @diavo
I use such formulas for digital seconds:

first digit - (floor(#Ds#/10))

second digit - (#Ds#-(10*floor(#Ds#/10)))

1 Like

Thanks pal for your nice and useful reply😀

Hi @rarest

Thanks pal for your nice and useful reply​:grinning::grinning:

1 Like

Hi @ThaMattie

You are very nice. Thanks again