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.
Hi everyone,
I have a column which contains text and I need a formula which can find a specific word (Magnetite) and if it finds it in the string to then give me what I want.
I have tried the following formula:
IF(SEARCH("Magnetite",GLF_LDG_ACC_TRANS,GLF_LDG_ACC_TRANS[NARR1]),"Customer1","Customer2")
IF(CONTAINS(TABLE,GLF_LDG_ACC_TRANS[NARR1],"Magnetite"),"Customer1","Customer2")
However it just gives me the answer as Customer2.
Here is a picture of the data:
Thanks,
Giles
Solved! Go to Solution.
I assume you are doing this in a calculated column, right? If so, there is either a bug in the software or a bug in the documentation. The documentation says the last 2 parameters are optional, but in my experience they are required.
This should work
=
IF (
ISBLANK ( SEARCH ( "Magnetite", GLF_LDG_ACC_TRANS[NARR1], 1, BLANK () ) ),
"Customer1",
"Customer2"
)
assuming I have the columns right and the returned values correct. They may be back to front or wrong
Hi there,
So I am having a similar situation but instead of one word I need to find multiple words. On a new column I would like to get a specific word from a text:
Example:
Column 1
texttexttextUCCCalciotexttexttext
texttexttextUCCMilktexttexttext
texttexttexttexttexttexttexttexttextVitamins
texttexttextWatertexttexttext
Column 2
Calcio
Milk
Vitamins
Water
Thanks in advance
In similar situation. Were you able to get the solution for this one,
@Rodrigo did you find a solution for your problem? If so, could you please help me out?
I assume you are doing this in a calculated column, right? If so, there is either a bug in the software or a bug in the documentation. The documentation says the last 2 parameters are optional, but in my experience they are required.
This should work
=
IF (
ISBLANK ( SEARCH ( "Magnetite", GLF_LDG_ACC_TRANS[NARR1], 1, BLANK () ) ),
"Customer1",
"Customer2"
)
assuming I have the columns right and the returned values correct. They may be back to front or wrong
Hey Matt,
Is there any way to add a second or subsequent keyword matches in a single statement?
My issue is I'm trying to find a search slicer that will not just search the possible lookups in that column, but actually update data on other visuals when I search a term. For instance, I want to find keywords in social media posts, but as I search in the slicer I want it to update impression/engagements, etc. Your formula works great, but it only works on a single keyword.
Thanks!
Thanks Matt for this solution - it helped me out as well!
thanks @MattAllington your solution of adding in the optional fields worked perfectly. I had to change the customer names around however the formula gave me what I needed.
Giles
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
63 | |
62 | |
52 | |
39 | |
24 |
User | Count |
---|---|
85 | |
57 | |
45 | |
44 | |
36 |