Hi All,
I have this IF condition which is from another tool.. i need to convert this into Alteryx IF condition
If([DR2 - Last Valid Date]< [SR1 - Last Valid Date] and [SR1 - Test Passed] = 'Yes' , - This is the condition
[SR1 - Last Valid Date] +365 , --This is the THEN part
--This is the ELSE Part
If([DR2 - Test Passed] = 'Yes',
[DR2 - Last Valid Date]+365 ,
'No Test Date')
)