Hi All,
I have recently joined into one of the Alteryx project where we are trying to replicate the Excel formula into Alteryx. I am currently stuck with one of the formula which is hard for me to replicate in Alteryx. Can anyone help me out in this?
Below is the SQL formula for a column;
if(if( isnull([OPV]) or [OPV] = 0, CVA * -1 + RecoveryA* -1, [OPV] * -1) <> 0
AND (match(DenialType,'Information Only','Information Only NO REMIT')=0 or isnull(DenialType)=-1 or DenialType='-')
AND (LastActivityStatus <> 'Single Case Agreement' or isnull(LastActivityStatus)=-1 or LastActivityStatus='-')
,if( isnull([OPV]) or [OPV] = 0, CVA * -1 + RecoveryA* -1, [OPV] * -1),0) AS [Initial D],