One Line Item into Multiple Based on Lookup

blurryaf

New Member
Joined
Dec 7, 2017
Messages
1
Hi,

I have lurked here for a while with things I've needed help with and have usually always found what I needed. This time, I have not and need some help.

I am looking to take line item(s) with a total quantity and break them out into multiple items with smaller quantities based on a lookup. The example here would be:

Item | Total Qty
Beverage 1 600
Beverage 2 300

This would then need to be broken out into multiple lines based on the lookup value of Beverage 1 = 100 per truck and Beverage 2 = 60 per truck.

Result:
Item | Qty per Truck
Beverage 1 100
Beverage 1 100
Beverage 1 100
Beverage 1 100
Beverage 1 100
Beverage 1 100
Beverage 2 60
Beverage 2 60
Beverage 2 60
Beverage 2 60
Beverage 2 60

I assume this will have to be done with VBA but I am still new to this type of coding. I have found examples here of VBA code that can do parts of this but have not found how to combine them all together.

Any help is greatly appreciated!
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Welcome to the forums!.. the non-lurky part, anyway.

A formula can only change the value of a single cell, so this would have to be a VBA solution. The fact that all numbers aren't being split at 100 means there will have to be logic in the macro that accounts for which beverage gets split by which amount; could even be like a key table that identifies the quantities for each beverage. Is there a chance that the division might leave a residual that is less than the split amount?

Would you be looking for assistance in making the macro or for someone to make it for you?
 
Upvote 0

Forum statistics

Threads
1,216,084
Messages
6,128,730
Members
449,465
Latest member
TAKLAM

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