F
Fred Dagg
I'm sure this isn't too hard but it's killing me! If a customer has a
pricing level of 1, how do I call pricelevel1 from the products table? This
should also be the case if the customer has a price level of 2, then
pricelevel2 should be called and a price level of 3 should call pricelevel3.
The resulting pricelevel is referred to as UnitPrice.
eg UnitPrice:IIf((Customers.PriceLevel)=1, Products.PriceLevel1,
IIf(Customers.PriceLevel)=2, Products.PriceLevel2,Products.PriceLevel3)).
This is not working in a query.
Thanks in advance
pricing level of 1, how do I call pricelevel1 from the products table? This
should also be the case if the customer has a price level of 2, then
pricelevel2 should be called and a price level of 3 should call pricelevel3.
The resulting pricelevel is referred to as UnitPrice.
eg UnitPrice:IIf((Customers.PriceLevel)=1, Products.PriceLevel1,
IIf(Customers.PriceLevel)=2, Products.PriceLevel2,Products.PriceLevel3)).
This is not working in a query.
Thanks in advance