4

I want a field in which only the year of the present date(Today) is shown.I had tried many methods but couldn't find any solutions.Can anyone help me with the problem.

I am new to sharepoint, so please explain me step by step.

Vinu V
  • 87
  • 1
  • 3
  • 11

1 Answers1

11

You can try to use Calculated Field with following formula:

=CONCATENATE(YEAR([Created]))

It will display year from item creation date. More info about calculated fields can be found here

Greg
  • 942
  • 10
  • 18