Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello so i have a column of products
Theres "product .01"
I want to make a m query formula that says if product contains "product" (anything in between) and ".01" to give me my result
I want to do this cause sometimes it "product 0.01" sometimes its "product 0.01" or "product .01" so sometimes theres more space or no space in between so is there a wildcard i could use in m query between "product" and ".01" ?
Solved! Go to Solution.
Hi @Anonymous ,
The wildcard filter is not directly available in Power Query. You can use Text.StartsWith() or Text.EndWith() to locate the string.
If you want to split the column, here is my solution.
Data sample:
Split column by “space”:
Split three columns by number of characters.
Final output:
You will see anything between "product" and ".01".
Best Regards,
Community Support Team _ xiaosun
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Power Query does not support wildcards, but there are alternative routes.
For other wildcard characters, custom functions will be necessary.
I wrote an article about various wildcard approaches that work for different kinds of wildcards and others.
https://gorilla.bi/power-query/wildcards/
It can be challenging, but I am hopeful for future support of regex or wildcards.
--------------------------------------------------
@ me in replies or I'll lose your thread
Master Power Query M? -> https://powerquery.how
Read in-depth articles? -> BI Gorilla
Youtube Channel: BI Gorilla
If this post helps, then please consider accepting it as the solution to help other members find it more quickly.
Hi @Anonymous ,
The wildcard filter is not directly available in Power Query. You can use Text.StartsWith() or Text.EndWith() to locate the string.
If you want to split the column, here is my solution.
Data sample:
Split column by “space”:
Split three columns by number of characters.
Final output:
You will see anything between "product" and ".01".
Best Regards,
Community Support Team _ xiaosun
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Use the Power Query native functionality to split on a delimiter and remove empty entries.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |