March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Say I have a chart like so:
ID | Description |
888 | This is BLUE |
150 | This is dark BLUE |
850 | This is light GREEN |
422 | This is RED |
397 | This is really BLUE |
431 | This tends to be YELLOW |
214 | This seems like it's GREEN |
272 | This is product RED |
532 | This had the color RED |
I need to make a bar chart that will show a count of how many descriptions have the word "BLUE", "GREEN", "RED", "YELLOW". So the count should end up like so: Blue = 3, Green = 2, Red = 3, Yellow = 1
How can I achieve this?
This would be a live feed data so every day it needs to refresh whatever calculation it is making.
Solved! Go to Solution.
Ok well her is one example of the way you can solve it.
1. create a table with all your keywords
2 cross join that table to your table you want to search
3 create an if statement that returns the colour value of the description if it contains a keyword
4 remove all other rows.
see example attached.
Proud to be a Super User!
so must it find any of the words or be an exact match ie you want to know exactly how many are blue or, you want to know how many have any of those colours?
Proud to be a Super User!
Any description that contains that word, whether it used to be or is lightly that color, should come up in the filter. So I guess I should have added an expected count. It should come up as Blue = 3, Green = 2, Red = 3, Yellow = 1
and one last question, is this question reflective of your real data or do you have bigger volumes of what you are searching for, and how big is your data?
Proud to be a Super User!
Real data has about 30 columns and 4k rows
Ok well her is one example of the way you can solve it.
1. create a table with all your keywords
2 cross join that table to your table you want to search
3 create an if statement that returns the colour value of the description if it contains a keyword
4 remove all other rows.
see example attached.
Proud to be a Super User!
Thank you! This worked out great.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |