Forum Discussion
cad-one
Jun 28, 2020Brass Contributor
SharePoint List column calculation
in a share point list, how to calculate a content of column? See image. I want "SOS" appended with month and date (MMDD) from the received date column. Is this possible?
For a revived date 06/28 It should finally look : SOS-0628
Hi cad-one,
Create "SOS Number" as calculated column.
Here is a formula for the column:
=CONCATENATE([SOS],"-",TEXT([Received date],"MM/dd"))
- Matti PaukkonenIron Contributor
Hi cad-one,
Create "SOS Number" as calculated column.
Here is a formula for the column:
=CONCATENATE([SOS],"-",TEXT([Received date],"MM/dd"))