Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I can filter my data using the following code in the advanced editor:
#"Filtered Rows" = Table.SelectRows(#"Previous step", each true)
Of course, nothing will happen there. What I would like to do now is to create a parameter (let's call it ParamFilter) where I could store the actual filter definition:
"([Column1] > 5 and [Column2] < 2)" meta [IsParameterQuery=true, Type="Any", IsParameterQueryRequired=false]
Now I want use that parameter content to do the actual filtering. This here will throw an error:
#"Filtered Rows" = Table.SelectRows(#"Previous step", each ParamFilter)
Which was obvious because it would be interpreted like this, mind the quotation marks:
#"Filtered Rows" = Table.SelectRows(#"Previous step", each "([Column1] > 5 and [Column2] < 2)")
I actually wanted to achieve this:
#"Filtered Rows" = Table.SelectRows(#"Previous step", each ([Column1] > 5 and [Column2] < 2))
So, how can I manage that? Any ideas?
Solved! Go to Solution.
Solved it myself after browsing the M reference again for anything related. There is the Expression.Evaluate() function. This will work:
#"Filtered Rows" = Table.SelectRows(#"Previous step", Expression.Evaluate(ParamFilter))
The each statement needs to go to the parameter value:
"each ([Column1] > 5 and [Column2] < 2)" meta [IsParameterQuery=true, Type="Any", IsParameterQueryRequired=false]
Solved it myself after browsing the M reference again for anything related. There is the Expression.Evaluate() function. This will work:
#"Filtered Rows" = Table.SelectRows(#"Previous step", Expression.Evaluate(ParamFilter))
The each statement needs to go to the parameter value:
"each ([Column1] > 5 and [Column2] < 2)" meta [IsParameterQuery=true, Type="Any", IsParameterQueryRequired=false]
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |