Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Dear All,
need help to find specific word from the cell / row wise and display output in anthere collumn
e.d
Customer is very upset and angry, need Shipment delivery ASAP
Need to look for upser,Angry and ASAP and put the same in another collumn to plot word cloud graph
Appericiate your support and looking or solution on the same
Many Thanks
Sameer
Solved! Go to Solution.
Hi @mkazi ,
If you prefer to do this in the Power Query editor then I would do it like this to have a non case-sensitive result:
if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"ASAP",Comparer.OrdinalIgnoreCase) then "ASAP"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"angry",Comparer.OrdinalIgnoreCase) then "Angry"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"Complaint",Comparer.OrdinalIgnoreCase) then "Complaint"
else "No"
Regards,
Hi @mkazi ,
I am glad it helped, if I answered your question please mark my post as the solution.
Regards,
Hi @mkazi ,
Try with this function: CONTAINSSTRING
https://dax.guide/containsstring/
Regards,
Hi Payres, trying to use the below if text.contains to get the below words from the table and each cell
anything to modify below
if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"ASAP") then "ASAP" ,
if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"angry") then "Angry"
if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"Complaint") then "Complaint"
else "No")
Hi @mkazi ,
If you prefer to do this in the Power Query editor then I would do it like this to have a non case-sensitive result:
if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"ASAP",Comparer.OrdinalIgnoreCase) then "ASAP"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"angry",Comparer.OrdinalIgnoreCase) then "Angry"
else if Text.Contains([#"Details of the Complaints / Suggestions n Feedback"],"Complaint",Comparer.OrdinalIgnoreCase) then "Complaint"
else "No"
Regards,
Thanks , i will use it as i jsut have to filter only Customer sentiment words , like ANGRY ETC...
it wil be max of 12 to 13 words
Hi @mkazi ,
I am glad it helped, if I answered your question please mark my post as the solution.
Regards,
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
10 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |