The following is a statement I have in excel:
=IF(R1<5.01,CEILING(R1,0.1),IF(R1<10.01,CEILING(R1,0.25),IF(R1<50.01,CEILING(R1,0.5),IF(R1<200.01,CEILING(R1,1),IF(R1<500.01,CEILING(R1,2),IF(R1<1000.01,CEILING(R1,5),IF(R1>1000,CEILING(R1,10))))))))
How can I create the same in Access? Please keep in mind, I am not a programmer and typically write all my queries in design view. I've used the ROUND command before, but only to round off to two decimal places - not with conditions as stated above.
HELP! .... thanks in advance to all!
=IF(R1<5.01,CEILING(R1,0.1),IF(R1<10.01,CEILING(R1,0.25),IF(R1<50.01,CEILING(R1,0.5),IF(R1<200.01,CEILING(R1,1),IF(R1<500.01,CEILING(R1,2),IF(R1<1000.01,CEILING(R1,5),IF(R1>1000,CEILING(R1,10))))))))
How can I create the same in Access? Please keep in mind, I am not a programmer and typically write all my queries in design view. I've used the ROUND command before, but only to round off to two decimal places - not with conditions as stated above.
HELP! .... thanks in advance to all!