Formula for rounding using a specific list

EricHocking

New Member
Joined
Sep 16, 2017
Messages
1
Ok, so i'm doing up sizes and prices for my company and I have a certain lists of values in column AG from AG3 to AG13, in another column I have the offset values. I need a formula for automatically setting the values in column 'F' from F5 to F19 to the next highest value on the list based on the values from E5 to E19. Here are my values:
500
750
1000
1250
1500
1750
2000
2250
2500
2750
3000
Anyone able to help? I'm terrible with formulas so i'm hoping soomeone knows how to do it tbh.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
500750
7501000
10001250
12501500
15001750
17502000col G
20002250
22502500row 8600750#####
250027507511000
2750300027002750
3000325029993000
easiest way is to use a lookup table
#####
=VLOOKUP(G8,mytable,2)

<colgroup><col width="64" span="10" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0
500750
7501000
10001250
12501500
15001750
17502000col G
20002250
22502500row 8600750#####
250027507511000
2750300027002750
3000325029993000
easiest way is to use a lookup table
#####
=VLOOKUP(G8,mytable,2)
col E
or if you really want a formula
row 32600750#####
7511000
27002750
29993000
#####
=(INT(E32/250)+1)*250

<colgroup><col width="64" span="12" style="width:48pt"> </colgroup><tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,215,328
Messages
6,124,299
Members
449,149
Latest member
mwdbActuary

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