Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
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
Hi All,
Right now, I am using contains function to match the text in "Measure" and show it in "Table". May I know if there is any easy way to acheive the same result ? If possible, is it able to do it in wild match? (I would like to do it in visualization instead of add new column in dataset).
My current express in Measure is as follow.
Solved! Go to Solution.
Hi @KH_Mike ,
Try
Measure=
SWITCH (
MAX ( 'Data'[Country] ),
"USA", "AMR",
"CANADA", "AMR",
MAX ( 'Data'[Country] )
)
or
Measure=
IF (
MAX ( 'Data'[Country] ) = "USA"
|| MAX ( 'Data'[Country] ) = "CANADA",
"AMR",
MAX ( 'Data'[Country] )
)
The MAX function is equivalent to getting the value of the current row, and the MIN function can also achieve the same effect.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@KH_Mike , I think you have to do like, what you are doing
Measure = if(CONTAINSSTRING(Data,Data[Country],"USA") || CONTAINSSTRING(Data,Data[Country],"CANADA"),"AMR",Data[Country])
Hi @amitchandak ,
I want to know if there is any function like Switch in Excel can make it formula short. Also, if I only input "Data[Country]" at the end. It seems can't work correctly.
Hi @KH_Mike ,
Try
Measure=
SWITCH (
MAX ( 'Data'[Country] ),
"USA", "AMR",
"CANADA", "AMR",
MAX ( 'Data'[Country] )
)
or
Measure=
IF (
MAX ( 'Data'[Country] ) = "USA"
|| MAX ( 'Data'[Country] ) = "CANADA",
"AMR",
MAX ( 'Data'[Country] )
)
The MAX function is equivalent to getting the value of the current row, and the MIN function can also achieve the same effect.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous,
That exactly what I need. Thank you.
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 |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |