Forum Discussion
mbs2016
6 years agoHelper I
Greater than / Less than equal to
How do I create a function or querey to show me only data where Value A is less than or equal to Value B? Example: Show items where "Received Quantity" is less than "Ordered Quantity".
Nathaniel_C
6 years agoCommunity Champion
IF(Received Quantity < Ordered Quantity, Received Quantity)
mbs2016
6 years agoHelper I
This solution did not seem to work.