I'm trying to re-create an excel file in Alteryx, however, i am getting stuck with a few formulas that exist in Excel but not in Alteryx.
The formula i am struggling with is in column Q:
=IF(OR(INT(4*AM4/AG4)*AG4=0, O4>4), N4, (INT(4*AM4/AG4)*AG4))
As well as column S:
=IF(IF(INT(J4)=J4,H4,FLOOR(H4,AH4))=0,CEILING(H4,AH4), FLOOR(H4, AH4))
I managed to re-create the formula in column N which was:
=IF(INT(I4)=I4,H4,CEILING(H4, AG4)) through using:
IF ( IsInteger([# Outers])) THEN [Adjusted Qty] ELSE Round([Adjusted Qty], [Outer]) ENDIF
I have attached the spreadsheet to the question.