Forum Discussion
Naveen_SV
7 years agoHelper IV
How to Create Filters in Matrix when user needs column name needs to be filtered
How can i create the Filters for the column which is given please see my below screen shot. when the columns are using Numbers. I want a filters for Male and Female is that possible.
- 7 years ago
Hi Naveen_SV
You may create a table2 as slicer.Then create 3 measures like below:
Female_1 = IF({"Female"} in VALUES(Table2[Slicer]),SUM(Table1[Female]))Male_1 = IF({"Male"} in VALUES(Table2[Slicer]),SUM(Table1[Male]))Population_1 = IF({"Population"} in VALUES(Table2[Slicer]),SUM(Table1[Population]))Regards,
v-cherch-msft
7 years agoMicrosoft Employee
Hi Naveen_SV
You may create a table2 as slicer.Then create 3 measures like below:
Female_1 = IF({"Female"} in VALUES(Table2[Slicer]),SUM(Table1[Female]))
Male_1 = IF({"Male"} in VALUES(Table2[Slicer]),SUM(Table1[Male]))
Population_1 = IF({"Population"} in VALUES(Table2[Slicer]),SUM(Table1[Population]))
Regards,
Naveen_SV
7 years agoHelper IV
Your amazing thanks for this