Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hello everyone,
Do I have the way to group few of the column header become a choice in slicer and show the column in the visual such as table? For example, I have a dataset with few column such as Title, Account Client Status, Payroll Client Status, Audit Client Status and Audit Remarks. I want to seperate them to 2 groups such as
Account
Audit
The slicer I want to put 2 choices Account and Audit. Once I choose Account. The visual such as table will be like. Is this possible?
| Title | Account Client Status | Payroll Client Status |
| Company A | ON | ON |
| Company B | ON | ON |
| Company C | ON | ON |
Solved! Go to Solution.
Hi @aduguid ,thanks for the quick reply, I'll add more.
Hi @dwlee898 ,
As @aduguid said, the field parameter can meet your needs.
The Table data is shown below:
Please follow these steps:
1.Create two field parameters.
2.Modify the expression of the field parameter
Parameter = {
("Title", NAMEOF('Table'[Title]), 0,"Account"),
("Account Client Status", NAMEOF('Table'[Account Client Status]), 1,"Account"),
("Payroll Client Status", NAMEOF('Table'[Payroll Client Status]), 2,"Account")
}Parameter 2 = {
("Title", NAMEOF('Table'[Title]), 0,"Audit"),
("Audit Client Status", NAMEOF('Table'[Audit Client Status]), 1,"Audit"),
("Audit Remarks", NAMEOF('Table'[Audit Remarks]), 2,"Audit")
}
3.Manually enter the following data to create a table and establish a relationship
Final output
Best Regards,
Wenbin Zhou
Hi @aduguid ,thanks for the quick reply, I'll add more.
Hi @dwlee898 ,
As @aduguid said, the field parameter can meet your needs.
The Table data is shown below:
Please follow these steps:
1.Create two field parameters.
2.Modify the expression of the field parameter
Parameter = {
("Title", NAMEOF('Table'[Title]), 0,"Account"),
("Account Client Status", NAMEOF('Table'[Account Client Status]), 1,"Account"),
("Payroll Client Status", NAMEOF('Table'[Payroll Client Status]), 2,"Account")
}Parameter 2 = {
("Title", NAMEOF('Table'[Title]), 0,"Audit"),
("Audit Client Status", NAMEOF('Table'[Audit Client Status]), 1,"Audit"),
("Audit Remarks", NAMEOF('Table'[Audit Remarks]), 2,"Audit")
}
3.Manually enter the following data to create a table and establish a relationship
Final output
Best Regards,
Wenbin Zhou
Create Field Parameters:
Modify the Field Parameter:
Add the Field Parameter to a Visual:
Create a Slicer for the Groups:
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 42 | |
| 40 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 149 | |
| 105 | |
| 63 | |
| 36 | |
| 36 |