I have data that looks like this:
# of parts cost per part
100 36.50
200 25.00
10 34.95
.
.
.
68,000 values
and I need to expand the list so that it's a list of, for example, 100 rows of 36.50, 200 rows of 25.00, 10 rows of 34.95,etc.. The goal is to...