Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello everyone,
In the screenshot below, I have a table in which the columns are hidden via a table with a "Yes" or "No" column
However, I would like to get the same result using a slicer
Is this possible in Excel with Power query ?
For information, I actually have about ten columns and more than 1000 rows
Thank you in advance for your help
Regards
A | B | C | D | E |
vb | nf | uy | ey | ut |
yt | sq | sq | tf | gd |
tf | su | yg | xs | qe |
gy | ud | jv | sk | op |
Column Name | Hid |
A | No |
B | No |
C | Yes |
D | No |
E | Yes |
let
Source = Excel.CurrentWorkbook(){[Name="Data"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"A", type text}, {"B", type text}, {"C", type text}, {"D", type text}, {"E", type text}}),
#"Removed Other Columns" = Table.SelectColumns(#"Changed Type",Status)
in
#"Removed Other Columns"
let
Source = Excel.CurrentWorkbook(){[Name="Status"]}[Content],
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column Name", type text}, {"Hid", type text}}),
#"Filtered Rows" = Table.SelectRows(#"Changed Type", each ([Hid] = "No")),
#"Column Name" = #"Filtered Rows"[Column Name]
in
#"Column Name"
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
12 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
13 | |
9 | |
7 | |
6 |