Formula Help... IF with rounding to nearest quarter

bobletcs123

New Member
Joined
Jan 31, 2019
Messages
27
Office Version
  1. 365
Platform
  1. Windows
Hi All,

Have a sheet with labor hours. Previously, anything that was <1 would get rounded up to 1 and anything over would be actual number...
Then, we changed to just go with actual numbers all around. Easy enough, just change formula to have labor hours field times whatever the rate is (A2*78).

Now, we want to see about not rounding up to 1, but to the nearest quarter...
0.01-0.25 = 0.25 ; 0.26-0.50 = 0.50 ; 0.51-0.75 = 0.75 ; 0.75-1.00 = 1.00

So, getting error too many arguments. Must be missing another AND or OR? Basically, anything that says "Remote Diagnostics" has a $25 rate and everything else has $78 rate.
I think the main formula is good, but not when I add in the "Remote Diagnostic" secction.
Main: = IF(AND(J3>=0,J3<=0.25),0.25*78,IF(AND(J3>0.25,J3<=0.5),0.5*78,IF(AND(J3>0.5,J3<=0.75),0.75*78,IF(AND(J3>0.75,J3<=1),1*78,J3*78)))))

Adjusted: = IF(AND(G3="Remote Diagnostics",J3>=0,J3<=0.25),0.25*25,IF(AND(J3>0.25,J3<=0.5),0.5*25,IF(AND(J3>0.5,J3<=0.75),0.75*25,IF(AND(J3>0.75,J3<=1),1*25,J3*25,IF(AND(J3>=0,J3<=0.25),0.25*78,IF(AND(J3>0.25,J3<=0.5),0.5*78,IF(AND(J3>0.5,J3<=0.75),0.75*78,IF(AND(J3>0.75,J3<=1),1*78,J3*78)))))
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
How about:

=ROUNDUP(J3*4,0)/4*IF(G3="Remote Diagnostics",25,78)

This doesn't take into account if J3 > 1.
 
Upvote 0
Crap!!! It doesn't round up any zero fields.... Any idea how to add that into it as well?
 
Upvote 0
Hi,

Why would 0 (zero) get rounded up?
Doesn't 0 indicate No Labor Hours or Work performed?
 
Upvote 0

Forum statistics

Threads
1,213,497
Messages
6,113,998
Members
448,541
Latest member
iparraguirre89

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top