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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mlee
Frequent Visitor

Drillthrough on a card

Hello,

 

I have the following sample data set.

 

IDTypeHeight
1Door Type A78.2
2Door Type B90.2
3Door Type A75.4
4Door Type B110.1
5Door Type C98.8
6Door TypeC75.4
7Door Type D110.1
8Door Type A110.1

 

On page 1 of the pbix I have a card visual showing the Max height of the door currently filtered.

 

card visual.PNG

 

If I change the page filters so only Type C doors are shown this visual would show 98.8 instead.

 

Users would like to see which door(s) are the max height given the current filters on page 1. Ideally they would click on the card and somehow they would see underlying rows of data. In this example if they clicked the card they would the three rows of data that have a max length of 110.10.

 

Due to space constraints I can't show this table of data on page 1. I'd have to use a drillthrough/bookmark to another page.

 

I've used drillthrough and it works but only if I use a table visual and not summarize the height column:

 

Screen Shot 2020-01-28 at 9.33.57 AM.png

 

I don't really want to show an entire table instead of a card. I could resize the table so it only show a single value but not the ideal.

 

I couldn't figure out how to drillthrough using the card.

 

Is it possible to achieve a drillthrough-like functionality with a card?

 

FYI - we're using page filters exclusively with no slicers on the page.

 

Thanks,

 

Mike 

1 ACCEPTED SOLUTION
v-lid-msft
Community Support
Community Support

Hi @mlee ,

 

Sorry for that, but we cannot use drill through in card visual, We can use the following workaround if you are using All page filter or Sync Slicer ( sorry we just notice that there is no slicer on your page 1, but all page filters have same effect with sync slicer)

 

1. create a  table and  two measure

 

WillShowHighest = SELECTEDVALUE(ShowHighest[Control],FALSE())

 

Height Visual Control = IF([WillShowHighest],



var h = CALCULATE(MAX('Table'[Height]),ALLSELECTED('Table'))
return IF(h = MAX('Table'[Height]),1,-1)
,1)

 

18.jpg

 

2. add a slicer in page 2 as following , save a bookmarks

41.jpg42.jpg

 

 

2. create a sync slicer on page 1 ( or use all page filter)

43.jpg

 

 

4. create a button in page 1

44.jpg

 

 

 

6. add a measure in visual filter of page 2

48.jpg

 

45.jpg46.jpg47.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-lid-msft
Community Support
Community Support

Hi @mlee ,

 

Sorry for that, but we cannot use drill through in card visual, We can use the following workaround if you are using All page filter or Sync Slicer ( sorry we just notice that there is no slicer on your page 1, but all page filters have same effect with sync slicer)

 

1. create a  table and  two measure

 

WillShowHighest = SELECTEDVALUE(ShowHighest[Control],FALSE())

 

Height Visual Control = IF([WillShowHighest],



var h = CALCULATE(MAX('Table'[Height]),ALLSELECTED('Table'))
return IF(h = MAX('Table'[Height]),1,-1)
,1)

 

18.jpg

 

2. add a slicer in page 2 as following , save a bookmarks

41.jpg42.jpg

 

 

2. create a sync slicer on page 1 ( or use all page filter)

43.jpg

 

 

4. create a button in page 1

44.jpg

 

 

 

6. add a measure in visual filter of page 2

48.jpg

 

45.jpg46.jpg47.jpg

 


Best regards,

 

Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
VasTg
Memorable Member
Memorable Member

@mlee 

 

As far as I know, card doesn't have drillthrough functionality.

 

If this helps mark it as a solution

Kudos are nice too

Connect on LinkedIn
bwarner
Helper I
Helper I

No, you can't use drillthrough on a Card. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.