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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
coollehavre
Frequent Visitor

power query skip step

Hi, i have a M query that load a value from Excel (Region)

 

let
Table_Parametres = Excel.CurrentWorkbook(){[Name="Tableau4"]}[Content],
Region= Table_Parametres{1}[Valeur],

...

and i would like to filter only if there's a value in the Region parameter

i wrote this : 

 #"Lignes filtrées"= if Region<>0 then Table.SelectRows(#"Colonnes supprimées", each [TREGION] = Region) else Table.SelectRows(#"Colonnes supprimées", each [TREGION] = "")

 

but i would not NOT filter is the Region is empty (actually he filters the TREGION="" )

 

Could you help me ?

 

3 REPLIES 3
ImkeF
Community Champion
Community Champion

Not sure if I understand your request, but would this work?:

 

 #"Lignes filtrées"= if Region <> null and Region <> "" then Table.SelectRows(#"Colonnes supprimées", each [TREGION] = Region) else #"Colonnes supprimées"

Imke Feldmann (The BIccountant)

If you liked my solution, please give it a thumbs up. And if I did answer your question, please mark this post as a solution. Thanks!

How to integrate M-code into your solution -- How to get your questions answered quickly -- How to provide sample data -- Check out more PBI- learning resources here -- Performance Tipps for M-queries

Anonymous
Not applicable

Worked great for me! Thank you!

Greg_Deckler
Community Champion
Community Champion

Calling in @ImkeF 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors