I am having trouble creating a formula for the following. I have a list that contains these 4 columns,
Status (choice field),
Effort,
Priority and
Start Date.
I need a formula that will validate the following in my list:
If Status = "Started", Then Effort, Priority and the Start Date fields cannot be blank.
What I have so far is the following:
=IF(Status="Not Started",TRUE,FALSE)
AND(([Effort]>"",[Priority]>"",[Start Date]>""),TRUE,FALSE)
I know my formula isn't right.
Is there anyone that is able to help?