I have this if statement in excel sheet which I need to replicate in Alteryx
=((IF((C13>0),(IF((H13<=C13),(IF(C13=M13,0,H13)),C13)),0)))
Am I right that this in Alteryx translates to
If
C13= M13 then 0
elseif C13.> 0 and H13 <=C13
then
H13
else
C13
endif
if yes then where does last 0 goes.