Solved: Lookup & transpose variable range from 1 To 3 columns
Hello, all.
I need to do the following:
I have data in 1 row in a format that looks like this:
A B C D E
106 widget1 $120 20 list of uniques from column B
106 widget2 $200 25
106 widget3 $300 10
107 widget1 $100 18
108 widget3 $200 7
what I need is a summary of where each widget is (Column A), and how many (Column D), in columns:
Widget1
data from column A data from column D data from column A data from column D
data from column A data from column D data from column A data from column D
data from column A data from column D data from column A data from column D
Sum by Widget of Column C
Widget2
data from column A data from column D data from column A data from column D
data from column A data from column D data from column A data from column D
data from column A data from column D data from column A data from column D
Sum by Widget of Column C
and so on.
There will be a maximum of 30 rows with the same data in column A.
ANY help will be greatly apreciated!