Is there an opposite to the MOD function? I'm looking for some function or way to get the quotient integer (so not including the remainder) like the Quotient function in excel. Is there a Alteryx formula for this or a work around that would yield this result?
Solved! Go to Solution.
If you are dealing just with postive values then:
FLoor([Numerator]/[Denominator])
will work
For general case, it is a little more work:
Floor(Abs([Numerator]/[Denominator]))*IIF([Numerator]/[Denominator]>0,1,-1)
Great thank you!