The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi,
I have a very large table and the part I am interested in is the value_2 column
I would like a measure where I can search and count this column for any mentions of "House 1" and then a seperate measure to search for any mentions of "House 2", etc etc.
Once I have this, I can then use the built in basic filters to get what I want but I am falling down here. I have tried varying formulas on these forums but I can't make any work for me.
I am also too embarassed to say but the latest one I have tried is:
Any help offered would be greatly appreciated!
Dan.
Solved! Go to Solution.
You can create a measure with below code
Measure 3 = CALCULATE(COUNT(Search_data[value]),CONTAINSSTRING(Search_data[value],"house1"))
My sample table data:-
Output:-
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
You can create a measure with below code
Measure 3 = CALCULATE(COUNT(Search_data[value]),CONTAINSSTRING(Search_data[value],"house1"))
My sample table data:-
Output:-
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
User | Count |
---|---|
14 | |
12 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
19 | |
13 | |
8 | |
5 |