Excel Formula:
P.S- I tried converting these formulas as separate IIF functions in Access and it worked.
But as I want it all together as a single field but it is showing up as "it is a too complex function for MS Access to process" .Please do help me out regarding this.
Code:
=IF(U6<2,Z6*1,IF(U6<5,Z6*1.5,IF(U6<11,Z6*2,IF(U6<21,Z6*3,IF(U6<100000,Z6*5))))) =IF(V5<2,AA5*0.8,IF(V5<5,AA5*1,IF(V5<11,AA5*1.5,IF(V5<21,AA5*2,IF(V5<100000,AA5*3))))) =IF(W5<2,AB5*0.5,IF(W5<5,AB5*0.8,IF(W5<11,AB5*1,IF(W5<21,AB5*1.5,IF(W5<100000,AB5*2))))) =IF(X5<2,AC5*0.3,IF(X5<5,AC5*0.5,IF(X5<11,AC5*0.8,IF(X5<21,AC5*1,IF(X5<100000,AC5*1.5))))) =IF(Y5<2,AD5*1,IF(Y5<5,AD5*1,IF(Y5<11,AD5*1,IF(Y5<21,AD5*1,IF(Y5<100000,AD5*1)))))
P.S- I tried converting these formulas as separate IIF functions in Access and it worked.
But as I want it all together as a single field but it is showing up as "it is a too complex function for MS Access to process" .Please do help me out regarding this.
Comment