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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

Advanced Editor - Filtering Columns

i created a parameter "Company"  and i pass its value on the advance editor.

 

Here are the values of Company parameter:

All

Company1

Company2

Company3

 

 

Here is my script in advance editor:

 

let
Source = Table.Combine({Contact1, Contact2, Contact3, Contact4, Contact5, Contact6, Contact7, Contact8}),
#"Filtered Rows" = Table.SelectRows(Source, each ([Company] = Company))
in
#"Filtered Rows"

 

If i select the "ALL" value, i want to remove the filter and show all the values.

Is that possible? Please advise. 

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

Based on my test, we can add an if condition in Advanced Editor to check if the value of Company parameter is All. There is an example for your reference.

 

 

let

    Source = Table.Combine({Table1, Table2}),

    appendtable = Source,

 

    #"Filtered Rows" = Table.SelectRows(Source, each [Company] = Company),

    result= if Company = "All" then appendtable

    else #"Filtered Rows"

in

#"result"

 

Through that we can get the result as below:

 

1.png

 

For more information, please refer to the pbix as attached.

https://www.dropbox.com/s/v7hbk2mrh2s1z8o/Advanced-Editor-Filtering-Columns2.pbix?dl=0


Your code can be updated as below.

let

Source = Table.Combine({Contact1, Contact2, Contact3, Contact4, Contact5, Contact6, Contact7, Contact8}),

    appendtable = Source,

 

    #"Filtered Rows" = Table.SelectRows(Source, each [Company] = Company),

    result= if Company = "All" then appendtable

    else #"Filtered Rows"

in

#"result"

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Anonymous,

 

Based on my test, we can add an if condition in Advanced Editor to check if the value of Company parameter is All. There is an example for your reference.

 

 

let

    Source = Table.Combine({Table1, Table2}),

    appendtable = Source,

 

    #"Filtered Rows" = Table.SelectRows(Source, each [Company] = Company),

    result= if Company = "All" then appendtable

    else #"Filtered Rows"

in

#"result"

 

Through that we can get the result as below:

 

1.png

 

For more information, please refer to the pbix as attached.

https://www.dropbox.com/s/v7hbk2mrh2s1z8o/Advanced-Editor-Filtering-Columns2.pbix?dl=0


Your code can be updated as below.

let

Source = Table.Combine({Contact1, Contact2, Contact3, Contact4, Contact5, Contact6, Contact7, Contact8}),

    appendtable = Source,

 

    #"Filtered Rows" = Table.SelectRows(Source, each [Company] = Company),

    result= if Company = "All" then appendtable

    else #"Filtered Rows"

in

#"result"

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.