I have a table in Excel that calculates the price of software.
Product Qty Cost
A 1 $100
B
C
D 2 $250
I am trying to create a sheet that just returns the Product name from the corresponding non-blank Cost column. So it would look like
Product Cost
A $100
D $250
I am able to populate the Cost column since that is a basic INDEX
and MATCH
but the difficult part is having it populate the Product name only from the non-blank costs. How would I do this?
I was able to find the value of the first non-blank cell but I could not have it return the subsequent non-blank cells.