Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a doubt, probably similar to this one: Solved: Qliksense Wildmatch -> Power BI DAX - Microsoft Power BI Community
I looked at the answers there, but could not find how to manage it exactly. In Qlik with the command:
if(wildmatch(Product, 'Altus Mod'), 'Altus Mod'
It searches the text "Altus Mod" in the Product field and loads it as "Altus Mod". That's very useful when we have fields with lots of information and we need to extract some. How can I do it with DAX? In Qlik it is used in the load, is there anything similar in Power Query?
Thank you.
Solved! Go to Solution.
@Anonymous , Based on what I got
You need to create a column
if( search("Altus Mod",[Product],,0) >0 , "Altus Mod", [Product])
HI @Anonymous,
You can take a look at the following blog to know about the string comparisons in Dax:
From SQL to DAX: String Comparison
Regards,
Xiaoxin Sheng
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
74 | |
63 | |
51 | |
47 |
User | Count |
---|---|
211 | |
86 | |
64 | |
59 | |
56 |