Forum Discussion
ttmb
8 years agoRegular Visitor
slicing by a % measure
I have a Gross Margin % measure which is calculated from two other measures (Gross Margin $ divided by Total Sales $). I need to be able to slice/filter the report based on the percentage returned fr...
- 8 years ago
Create a summary table with % Margin and set relationship between summary table and data table and filter using % margin from summary table.
- 8 years ago
parry2k is correct. To use the result of a mesure to slice/filter the context, you have to make this measure into a column. So you need to summarize this measure into a calculated table.
CalculatedTable = ADDCOLUMNS ( Table, "Gross Margin Pct", [Gross Margin %] )
Regards,
parry2k
Super User
8 years agoCreate a summary table with % Margin and set relationship between summary table and data table and filter using % margin from summary table.