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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Everyone,
I have a measure which counts the number of Delayed Invoices , i would like to filter the Table which contains all the invoice details when users click on the Number of Delayed Invoices Measure to just the delayed Invoices . Currently i am unable to do so , any suggestion would be great.
Thanks
Hi @rahsingh ,
You could try to add this measure into filter pane of the table visual. Then set the rule as "measure >0".
Thank you for replying @amitchandak I do have a Inner Join on my tables but this is a measure not a Calculated column , Here is my Measure DAX hope this helps.
DelayedInvoices = if(isblank(CALCULATE(count(Invoice[Id]),filter(Invoice,Invoice[Timeliness]="Delayed"))),0,CALCULATE(count(Invoice[Id]),filter(Invoice,Invoice[Timeliness]="Delayed")))
This gives me a result of 16 Invoices and now when i click on 16 i want it to filter the Table grid to those 16 Invoices which are delayed.
Just to be clear Table grid is one visual and Count Measure is another visual.
Hope this helps
I doubt click on card or number will add filter. But you can manage that by drill through or Bookmarks have table with that filter and drill or show that.
https://docs.microsoft.com/en-us/power-bi/desktop-drillthrough
https://radacad.com/bookmarks-and-buttons-making-power-bi-charts-even-more-interactive
@amitchandak The links is about how to hide and show a visuals but it does not talk about filtering to the grid.