Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show only the year field in Sharepoint date and time(Today)

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.

like image 319
Vinu V Avatar asked Dec 20 '22 21:12

Vinu V


1 Answers

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

like image 164
Greg Avatar answered May 12 '23 19:05

Greg