I am struggling to find an answer on how to format a If then statement in SharePoint 2013 using a calculated column. I need to display the word "Completed" if the date =1/1/1900 or display the date itself
Current Code:
=IF( [GE Internal Report Receipt]="1/1/1900"
,"Complete"
,TEXT([GE Internal Report Receipt],"dd/MM/yyyy")
)
Currently this displays the date 1/1/1900 in the date format. This should say complete. I am finding if I do a standard If statement =IF([GE Internal Report Receipt]="1/1/1900","Complete",[GE Internal Report Receipt] I get an output of 2 for the date 1/1/1900 and an output of a random number if there is a true date in the field.
Current Code: Almost working with ISBLANK
=IF(ISBLANK([GE Internal Report Receipt]),"Missing Date")
=If([GE Internal Report Receipt]=DATE(1900,1,1)
,"Complete"
,Text([GE Internal Report Receipt],"dd/MM/yyyy"
)