Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! 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] )