Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Mederic
Helper V
Helper V

Hiding columns with a slicer in Excel-Power query

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
RegardsHid Column With Slicer.jpg

 

ABCDE
vbnfuyeyut
ytsqsqtfgd
tfsuygxsqe
gyudjvskop

 

Column NameHid
ANo
BNo
CYes
DNo
EYes

 

 

 

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"

 

0 REPLIES 0

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors