dates

  • Thread starter Thread starter jerimi
  • Start date Start date
J

jerimi

Hello all,

i would like to display the last number of the year in a
cell. i.e. for 2004, I would like the cell to read 4.
Can this be done?

thanks
 
Hi Jerimi!

With a date in A1:

=A1
Format y or yy

Unfortunately that displays 04

Or:

=MOD(YEAR(A1),10)
 
Back
Top