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?
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?
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