KnotKnick
02/04/2021, 3:03 PMCASE WHEN {transaction.type} = 'Sales Order' THEN {transaction.trandate} ELSE '' END
However, I keep on getting invalid expression error. I think my else condition is failing. is there a way to resolve this?PNJ
02/04/2021, 3:11 PMcase when {type}='Sales Order' then {trandate} else NULL end
I suspect in your case it is ''
being a string that is returned, rather than a dateKnotKnick
02/04/2021, 3:19 PMWatz
02/05/2021, 6:24 AM