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.
Hi,
I have a text box field for natural search within a PowerBI canvas.
I also have a data grid related to the search parameter above.
However, the data grid loads data before the search is executed.
I only want the data grids to show data when I have executed a natural search query - free text.
How can I do this please?
Thanks.
hi, @SachinC
You could use ISFILTERED Function to create a measure like this:
Measure = IF( ISFILTERED('sample'[Index]),1,2)
Then drag it into visual level filter and set its filter is 1
Best Regards,
Lin
Will give this a go and let you know. Thank you.