This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
i have a column with long text. The string within that text I'm looking for has either 001-005 at the end, like that:
Material001, Material 002, Material 003, Material.....
That string is always at another position, in the text. But if its there my calculated column should display that text
Calculated Column
Material001
Material002
"N/A"
etc.
The function Search and Find has not the features for that purpose.
Thank you very much in advance.
Best.
Solved! Go to Solution.
Hi,
This calculated column formula works
Column = coalesce(FIRSTNONBLANK(FILTER(VALUES('Search strings'[Strings]),SEARCH('Search strings'[Strings],Data[OriginalTextColumn],1,0)),1),"Not found")
Hope this helps.
here is a sample table:
| OriginalTextColumn | CalclatedColumn | |
| ***Productionkey***Additional Information for Assingement*** Material001 | Material001 | |
| ***Productionkey***Material002*** Additional Information for Assingement | Material002 | |
| Additional Information for Assingement | No Material found |
As you can see the word MaterialXXX is always at another position.
Hope that clarifies.
Best regards.
Hi,
This calculated column formula works
Column = coalesce(FIRSTNONBLANK(FILTER(VALUES('Search strings'[Strings]),SEARCH('Search strings'[Strings],Data[OriginalTextColumn],1,0)),1),"Not found")
Hope this helps.
Hi,
Your expected result is not clear. Show the actual data and expected result very clearly.
Hi @Applicable88 ,
Is it not possible for you to this transformation upstream in Power Query?
Did I help you today? Please accept my solution and hit the Kudos button.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |