Have a table with supplier name and sales to date. I would like to run a query that has a third col using an expr that puts either A B or c depending on the value
Expr1: IIf([SumOfNet value]>100000,"A",IIf([SumOfNet value]=0,"B",IIf([SumOfNet value]<100000,"C","")))
However I want to change the values to having a between range for each category
A between 0 and 50000
B between 50000 and 100000
C between 100000 and 1000000
But cant get the formula right.