Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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 ?
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
Worked great for me! Thank you!
Calling in @ImkeF
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.