I have a Excel formula to take the "Original data" below and then change it to the "New data" and I tried to replicate this in Alteryx ( see below) but I get "unknown variable error" and not sure of the correct syntax, can someone help me correct this?
Thanks,
Mike
=IF(A1="","",IF(LEFT(A1,3)="ETA", "2023-"&MID(A1,5,2)&"-"&RIGHT(A1,2)&" ETA",A1))
(Excel)
Original data: ETA 05/26
New data: ETA 2023-05-26
IF [2nd GI]"","",IF LEFT([2nd GI],3)="ETA", "2023-" & Substring(ToString([2nd GI]),5,2) &"-"& RIGHT([2nd GI],2)&" ETA",[2nd GI]))
(Alteryx)