Forum Discussion

Kurniasih_Fajar's avatar
Kurniasih_Fajar
Copper Contributor
Sep 05, 2024

How to create formula calculated column in sharepoint list

Hi everyonelearns ,

 

I have 2 column: Expiring Date and Status

With condition if:

I use formula:

=IF(And([Expiring Date] <= Today(), [Expiring Date] <= Today())), “Active”, “Inactive”)


But show message error: Sorry, something when wrong.

 

Please correct my formula

  • It looks like there's an extra ")" in your formula. Try this corrected version: =IF([Expiring Date] <= TODAY(), "Active", "Inactive") This should fix the error.

Resources