Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
bzeeblitz
Helper IV
Helper IV

To view items in table visuals

I have table visuals as below but how do I see the Item number when I click Completed

 

Date.            Completed. not started

3/17/2025.          3.             0

 

So when I click Completed 3 and I want to see Item number 

3 ACCEPTED SOLUTIONS
Deku
Super User
Super User

You could add a measure to the tooltip well. When you hover on the row you will see a list of completed items

completed items =
CONCATENATEX( 
   CALCULATE(
      VALUES( table[Item Number] )
      ,Table[Status] = "Completed"
   )
   ,table[Item Number]
   ,", "
)

 


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

View solution in original post

bhanu_gautam
Super User
Super User

@bzeeblitz 

Create a Drill-through Page:

Add a new page to your Power BI report.
On this new page, create a table visual that includes the Item number and other relevant details.
Configure Drill-through:

Select the new page.
In the Visualizations pane, find the Drill-through section.
Drag the field that represents the "Completed" count into the Drill-through filters well.
Enable Drill-through on the Main Visual:

Go back to the main page with the summary table visual.
Ensure that the visual is configured to allow drill-through by right-clicking on the "Completed" count and selecting the drill-through option.
When you click on the "Completed" count in the main visual, Power BI will navigate to the drill-through page and show the detailed table with the Item numbers filtered based on the selection.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






View solution in original post

randomUser21
Resolver I
Resolver I

A simple and practical solution is to create a tooltip. I'll leave the information on this link.

https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-tooltips

View solution in original post

5 REPLIES 5
randomUser21
Resolver I
Resolver I

A simple and practical solution is to create a tooltip. I'll leave the information on this link.

https://learn.microsoft.com/en-us/power-bi/create-reports/desktop-tooltips

bhanu_gautam
Super User
Super User

@bzeeblitz 

Create a Drill-through Page:

Add a new page to your Power BI report.
On this new page, create a table visual that includes the Item number and other relevant details.
Configure Drill-through:

Select the new page.
In the Visualizations pane, find the Drill-through section.
Drag the field that represents the "Completed" count into the Drill-through filters well.
Enable Drill-through on the Main Visual:

Go back to the main page with the summary table visual.
Ensure that the visual is configured to allow drill-through by right-clicking on the "Completed" count and selecting the drill-through option.
When you click on the "Completed" count in the main visual, Power BI will navigate to the drill-through page and show the detailed table with the Item numbers filtered based on the selection.




Did I answer your question? Mark my post as a solution! And Kudos are appreciated

Proud to be a Super User!




LinkedIn






Awesome, worked 👍 

Many thanks, can you please show and tell with images

Deku
Super User
Super User

You could add a measure to the tooltip well. When you hover on the row you will see a list of completed items

completed items =
CONCATENATEX( 
   CALCULATE(
      VALUES( table[Item Number] )
      ,Table[Status] = "Completed"
   )
   ,table[Item Number]
   ,", "
)

 


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors