C
Cameron Sutherland
Everywhere you read people warn against IIF functions in
your queries because of the speed problems but sometimes
you just have to. Your query might look something like
this:
Price_Reduction:
IIF([Current_Price]=0, 0, [Original_Price]-[Current_Price])
In english this says if the current price is 0 then
display 0 otherwise perform calculation.
-Cameron Sutherland
your queries because of the speed problems but sometimes
you just have to. Your query might look something like
this:
Price_Reduction:
IIF([Current_Price]=0, 0, [Original_Price]-[Current_Price])
In english this says if the current price is 0 then
display 0 otherwise perform calculation.
-Cameron Sutherland