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 |
---|---|
114 | |
61 | |
59 | |
40 | |
40 |
User | Count |
---|---|
118 | |
66 | |
65 | |
65 | |
48 |