SharePoint Online Calculated Column Value

Copper Contributor

I'm trying to format my column to present a date format of "mm-dd-yyyy" but can't seem to find the proper context.  I also need the column to show nothing if the "Start Date" happens to be blank.

 

Here is the current formula:

---

=IF(ISBLANK([Start Date]),"",[Start Date]+60)

---

Any help would be appreciated.

2 Replies

@bderrWI in the calculated column use =IF(StartDate="","",StartDate+60)

 

Rob
Los Gallardos
Microsoft Power Automate Community Super User.
If I've answered your question or solved your problem, please mark this question as answered. This helps others who have the same question find a solution quickly via the forum search. If you liked my response, please consider giving it a thumbs up. Thanks.

@RobElliott that string does not work.  I get an error.