Forum Discussion
gaby58
1 year agoFrequent Visitor
Multiple If with Multiple Conditions
Hi All, Need help in creating a Custom Column. I have 2 columns and need to check values in first column, based on that I need to check values in another column, this one has multiple values, d...
Omid_Motamedise
1 year agoSuper User
Use this one:
IF (
([Section Stage]="Complete" or [Section Stage]="In Progress") and ([DateLeft_Adjusted]="12/20/2024" or [DateLeft_Adjusted]= "10/11/2024")) Then "01/07/2025" else if ([DateLeft_Adjusted] = "3/7/2025" or {DateLeft_Adjusted] = "5/22/2025") Then "6/5/2025"
Else
[DateLeft_Adjusted]+1
gaby58
1 year agoFrequent Visitor
Thank you this, it says Token Eof expected at first Then