Pardon me if this question has been asked before. I've done some searching and have yet to find an answer.
I created a pivot table from my source data, with 2 Row Label fields (subsystem and failure mode), and one Value field (part). It looks like this:
subsystem / failure mode / Count
brake / mode_1 / 1
brake / mode_2 / 6
brake / mode_3 / 4
cooling / mode_4 / 3
cooling / mode_5 / 1
How can I create a pivot table which summarizes my data by subsystem and the count of UNIQUE failure modes? Like this:
subsystem / Count
brake / 3
cooling / 2
I know that I can create a second pivot table and use as its data source the first pivot table, but that requires me to manually adjust the second pivot table's range whenever new data is added. And it's not very elegant (it's ugly).
I'd like to just create one pivot table to do this, but I don't know how.
In Access, I'd use a SELECT DISTINCT query, but that function doesn't appear in Excel.
Any idea? Thanks.
I created a pivot table from my source data, with 2 Row Label fields (subsystem and failure mode), and one Value field (part). It looks like this:
subsystem / failure mode / Count
brake / mode_1 / 1
brake / mode_2 / 6
brake / mode_3 / 4
cooling / mode_4 / 3
cooling / mode_5 / 1
How can I create a pivot table which summarizes my data by subsystem and the count of UNIQUE failure modes? Like this:
subsystem / Count
brake / 3
cooling / 2
I know that I can create a second pivot table and use as its data source the first pivot table, but that requires me to manually adjust the second pivot table's range whenever new data is added. And it's not very elegant (it's ugly).
I'd like to just create one pivot table to do this, but I don't know how.
In Access, I'd use a SELECT DISTINCT query, but that function doesn't appear in Excel.
Any idea? Thanks.