I want to check different conditions and based on each condition a specific action should be triggered.
In the following example, I want to check the request type if it is new OR amendment AND Build Date Completion is not null then I need the days between the dates included in the first parenthesis otherwise I need the days between the dates included in the second parenthesis.
However, when I run the query I could only see the actual formula pasted in each row.
Does anyone know what I am doing wrong?
="If([Build Request Type]=\"New\")
OR
If([Build Request Type]=\"Amendment\")
AND Not(IsNull([Build Date Completion])
Then
DaysBetween([Actual build date];[Ordering Tool Validation Complete Date])
else
DaysBetween([Submission];[Actual build date])"