Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a table of keywords and want to search the Expenses[Description] column and return results either in a column or filtered table of all rows containing the keyword.
This calculated column works great in my Sample data, but my live data is Direct Query and I cannot add this column. Any thoughts on making it work with Direct Query?
Sample: https://drive.google.com/file/d/1OBH19U2hwxf1lj2_l-po3Wo2y-2mmE1K/view?usp=share_link
@ssbagley , Create a measure like
maxx(filter('Table', SEARCH ( 'Table'[Keywords], Expenses[Description], 1, 0 )>0), 'Table'[Keywords] )
plot with Keywords
Countx(filter('Table', SEARCH ( 'Table'[Keywords], Expenses[Description], 1, 0 )>0), 'Table'[Keywords] )
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 31 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 79 | |
| 68 | |
| 43 | |
| 26 | |
| 23 |