Hi,
How I can execute two or more conditional formulas that can concatenate output in the same results column?
I need to validate with these two conditional statements and output the result in one column.
1st Condition
IF Left([Short Desc], 1) != "X" THEN "Descriptions must begin with X" ELSE "" ENDIF
2nd Condition
IF RIGHT([Short Desc],1)!="Y"
AND RIGHT([Short Desc],1)!="Z"
THEN "Check suffix, it is Wrong"
ELSE ""
ENDIF
Example
Short Desc | Expected Result |
X Test Description Y | Valid! |
X Test Description | Check suffix, it is Wrong |
Test Description | Descriptions must begin with X + Check suffix, it is Wrong |
Test Description Z | Descriptions must begin with X |
Attached is the sample workflow