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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
jaypatel
Helper III
Helper III

Show selected value in Card instead of Blank

All,

I was working with sync slicers (i.e. global slicer for all pages in the entire report) in Power BI. I was filtering data based on the slicers. Due to the blank value, I cannot get the selected slicer data into the card value. As an example, I've added a Card to display chosen values in the header.
But there is no data; it is showing "(Blank)," but I want to show a selected value in the card.
Please see the attached screenshots for further information where I have added a page-level filter to "Page 1" and am choosing a value from the "Selection" page.Selection Page - Global SlicerSelection Page - Global Slicer

 

Page1-Screenshot 2023-01-02 110534.jpg

 

 

Download the PBIX file from the attached link : Selection.pbix 

5 REPLIES 5
TomMartens
Super User
Super User

Hey @jaypatel ,

 

this will not work, you need a proper star schema, as you are using a page filter.

For this reason "Family4" will be filtered out, meaning you can not extract the selected item from synched slicer.

As long as Name and Title are in the same table your Card visual will always be blank: This si due to a concept called AutoExist. I recommend reading this article: Understanding DAX Auto-Exist - SQLBI

Regards,

Tom

ily and Item



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
TomMartens
Super User
Super User

Hey @jaypatel ,

I always use a measure to visualze selections from a slicer in combination with a card visual. This is the DAX measure: 

vizAid SelectedColorName = 
IF( ISFILTERED( 'DimProduct'[ColorName] )
    , CONCATENATEX(
        VALUES( DimProduct[ColorName] )
        , [ColorName]
        , ", "
        , [ColorName]
        , ASC
    )
    , "No colors selected (ALL)"
)

 The next picture shows the result, if no color is filtered (left), and if multiple colors are filtered (right)
image.png
Please be aware that this does not replace the synch of slicers.

Hopefully, this provides a new idea on how to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

@TomMartens  I have attached a .pbix file for reference.

Mahesh0016
Super User
Super User

@jaypatel ,

>> Measure = IF(SELECTEDVALUE(Card[Column])=Blank(),SELECTEDVALUE(Slicer[Column]))

** I hope this post helps you.
**If this post helps, please consider accept as solution to help other members find it more quickly and Appreciate your Kudos.


 

@Mahesh0016  I have attached a .pbix file for reference. 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.