Hey people, I am trying to make a vba script where we have unknown number of rows and respective numbers which show how many products can one euro palette store. The idea is that I will start from the end of the list and start adding the last value to the one above until a certain number of products is reached (for example 50) in the first row and then continuing to the cell below the one which is already considered full. To get a better understanding lets say we have the following sheet:
column A
23
43
17
30
After executing the code this column will look the following:
column A
50
50
13
My idea is using Do While but I would really appreciate any help!
column A
23
43
17
30
After executing the code this column will look the following:
column A
50
50
13
My idea is using Do While but I would really appreciate any help!