I am new to VBA. I have a table that holds the following information (Item#, Qty). On the click of a button, if Qty > 1, then I need to create a record in a separate table for each Qty. If Qty = 1, then only one record should be created.
Example:
Item# 1,2,3,4,5
Qty 2,1,3,2,1
Perspectively.
Should come out...
Item#
1
1
2
3
3
3
4
4
5
Example:
Item# 1,2,3,4,5
Qty 2,1,3,2,1
Perspectively.
Should come out...
Item#
1
1
2
3
3
3
4
4
5