Forum Discussion
mbs2016
Helper I
6 years agoGreater 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
Community Champion
6 years agoIF(Received Quantity < Ordered Quantity, Received Quantity)
mbs2016
Helper I
6 years agoThis solution did not seem to work.