Shorten Year from 2019 to 19'

Hi all

Is there a way to shorten the year i.e. 2019 to 19’ ?

I’m using:

Today().Year()

I thought the following would work but no:

Today().Year(YY)

Any ideas?

1 Like

Today().Year().Right(2) should do it. If you want the apostrophe, then you can do Concatenate("'", Today().Year().Right(2))

Joe

OMG

I cannot believe I didn’t get that myself, so simple.

Thanks

1 Like