I have a two field/column data file that has values like this (example)
STAGE FILENAME
Closed laptop.xls
Trial desktop.xls
Closed tablet.xls
Closed tablet.xls
Trial laptop.xls
Trial desktop.xls
Closed tablet.xls
What I'm after is the ability to show a column of each file name, and then columns showing the stages, and then the count of each time the file appears for each stage, such as:
FILENAME Closed Trial
laptop.xls 1 1
desktop.xls 0 2
tablet.xls 3 0
Hope this makes sense.