I have this formula below that works great. However, I have been asked to do this:
Round Up from .20 or greater. Example if value is 4.2 would round to 4 and if value is 4.25 would round to 5. Is this possible? Thank you!
=IIf(Forms![frm_Scheduling Capacity Module-NEW]!APVS=0,Round(Forms![frm_Scheduling Capacity Module-NEW]!DUEQTY_10/30000),Round((Forms![frm_Scheduling Capacity Module-NEW]!DUEQTY_10/Forms![frm_Scheduling Capacity Module-NEW]!APVS)))
Round Up from .20 or greater. Example if value is 4.2 would round to 4 and if value is 4.25 would round to 5. Is this possible? Thank you!
=IIf(Forms![frm_Scheduling Capacity Module-NEW]!APVS=0,Round(Forms![frm_Scheduling Capacity Module-NEW]!DUEQTY_10/30000),Round((Forms![frm_Scheduling Capacity Module-NEW]!DUEQTY_10/Forms![frm_Scheduling Capacity Module-NEW]!APVS)))