Forum Discussion
Slicing measures in calculated table
- 9 years ago
Hi jscottNRG,
According to the description above, you should be able to follow steps below to reorganize the measures on a Table visual, instead of using a calculated table.
I assume you have table with a column called "Inspection Item" of value "Item 1", "Item 2"(if you don't have it yet, you need to add it first).
1. Use the formula below to create a new measure for "Pass Count".
Pass Count = SWITCH ( FIRSTNONBLANK ( 'Table1'[Inspection Item], 1 ), "Item 1", 'My Calcs'[Item 1 Pass], "Item 2", 'My Calcs'[Item 2 Pass], 0 )2. Use the formula below to create a new measure for "Fail Count".
Fail Count = SWITCH ( FIRSTNONBLANK ( 'Table1'[Inspection Item], 1 ), "Item 1", 'My Calcs'[Item 1 Fail], "Item 2", 'My Calcs'[Item 2 Fail], 0 )Note: Just replace "Table1" with your real table name that has the "Inspection Item" column.
3. Then you should be able to show the "Inspection Item" column with the new "Pass Count" and "Fail Count" measure on the Table visual. :smileyhappy:
Regards
Realize that a calculated table is only "refreshed" when all your data is refreshed. It isn't really "dynamic" and should be thought of just like any other table that you (say) pulled from SQL or a CSV. It's... just a table (that happen to have gotten data via a DAX query, but that is irrelevant while lookin' and slicin' your report).
You can certainly create relationships w/ calculated tables, and slicers should work against the calculated table... but not "during refresh"... if you get me?