I want to split the short year value, i.e. #Dyy# into the individual digits.
Seems simple to do:
1st digit: (floor(#Dyy#/10))
2nd digit: (#Dyy#%10)
This works fine in designer and for the preview in the Facer app on Android.
It worked fine on my watches as well before the “upgrade” to WFF.
Now my Samsung Galaxy Watch 6 Classic running One UI 8 (WFF):
always returns 0 for (floor(#Dyy#/10)) and
always returns an empty result for (#Dyy#%10)
(#Dyy#) on its own does work.
Doing the same for the month value, works as expected.
(floor(#DM#/10))
(#DM#%10)
I.e. I only have the issue on the physical watch device for the short form year value.
This seems like a Facer bug to me.
Can anybody else confirm this?
BTW:
I tried to report this bug to Facer on 16 December 2025 via email (support@facer.io) but am still waiting for a reply.
I normally use the support page at https://help.facer.io/hc/en-us/requests to submit support requests, but am unable to sign in there: “Couldn’t sign you in. Give it a moment and try again.” First noticed this on 16 December 2025.
I sent 2 messages to support@facer.io regarding this issue (16 December and again on 5 February 2026) but have not received a reply from Facer yet.
I.e. I need support regarding Facer support… 
@mountain_lion
Give this a try and see how it works. I know it will load correctly on WearOS for sure.
Year last two digits vertical
10’s Digit: 10’s
((floor(#Dyyyy#/10))-((floor(#Dyyyy#/100))*10))
1’s Digit: 1’s
((floor(#Dyyyy#/1))-((floor(#Dyyyy#/10))*10))
1 Like
What about for 4 digits? 2026?
Thanks for the reply @mrantisocialguy
Yes there are workarounds (which I will try), but it should not be required.
I just wanted to confirm that others are seeing the same before spending even more time trying to report the bug to Facer.
I dug out my original Galaxy Watch (running Tizen) and my expressions work 100% there.
So I am 99% convinced that this is a WFF bug.
Hopefully
the more complex expressions will also work in conditionals (I have struggled with complex expressions in conditionals in the past).
2 Likes
@pinbal24
Considering that Facer probably won’t be around in 74 years I would just use a text layer for the 2 and 0.
1 Like
Even if Facer is still around in 74 years, I certainly will not be. 
So to keep the expressions simple for myself, I used:
(floor((#Dyyyy#-2000)/10))
((#Dyyyy#-2000)%10)
This works for WFF, including as comparison in a conditional.
Obviously the strictly correct, but slightly more complex expressions provided by @mrantisocialguy, work as well.
2 Likes