Forum Discussion
JaneUser
Mar 06, 2023Copper Contributor
Calculate a month number in a separate column
Hello everyone, I have a coumn "Storage reseption date" in a sharepoint list and I want to have a separate column (text or number) with a month number in it: if i have 03/12/2022 reception date, ...
- Mar 06, 2023
JaneUser =TEXT([Storage reception date],"mm")
Rob
Los Gallardos
Intranet, SharePoint and Power Platform Manager (and classic 1967 Morris Traveller driver)
kalpeshvaghela
Mar 06, 2023Steel Contributor
You can try following formula which should work in both the case i.e. When Date is there or date is empty
=IF(ISBLANK([Storage reseption date]),"",MONTH([Storage reseption date]))
Hope it will helpful to you and if so then Please mark my response as Best Response & Like to help others in this community