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
craigmon
Helper I
Helper I

Force Card to show nothing if slicer is blank

Hi Guys, is there a way to force a card to show nothing if the 'department' Slicer is left blank?  Thanks

 

The column feeding the card is a per below:

 

Concate = if(Dept_Rank_Summary[Col2]="", "", CONCATENATE(Dept_Rank_Summary[Rank3], " "& "(" & Dept_Rank_Summary[Col2]) & ")")
 
 
1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @craigmon 

sorry for the late reply, you can try this

 

 

Concate =
VAR _selDepartment =
    SELECTEDVALUE ( table[department] )
VAR _calculation_when_slicer_is_not_blank =
    CONCATENATE ( Dept_Rank_Summary[Rank3], " " & "(" & Dept_Rank_Summary[Col2] ) & ")"
RETURN
    IF (
        ISBLANK ( _selDepartment ),
        BLANK (),
        _calculation_when_slicer_is_not_blank
    )

 

 

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

8 REPLIES 8
v-xiaotang
Community Support
Community Support

Hi @craigmon 

Have you solved your problem? If yes,  could you kindly mark the answer helpful as the solution? 
If not, could you provide more details about your problem? so that we can work on it further. Thanks.


Best Regards,
Community Support Team _ Tang

v-xiaotang
Community Support
Community Support

Hi @craigmon 

sorry for the late reply, you can try this

 

 

Concate =
VAR _selDepartment =
    SELECTEDVALUE ( table[department] )
VAR _calculation_when_slicer_is_not_blank =
    CONCATENATE ( Dept_Rank_Summary[Rank3], " " & "(" & Dept_Rank_Summary[Col2] ) & ")"
RETURN
    IF (
        ISBLANK ( _selDepartment ),
        BLANK (),
        _calculation_when_slicer_is_not_blank
    )

 

 

 

 

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

parry2k
Super User
Super User

@craigmon add as a measure:

 

Test = 
IF ( 
   HASONEVALUE ( Dept_Rank_Summary[Department] ), 
   if (
       MAX(Dept_Rank_Summary[Col2])="", "", 
       MAX(Dept_Rank_Summary[Rank3]) & " (" & MAX(Dept_Rank_Summary[Col2]) & ")" 
   ), 
   "Select a department" 
)

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

Try to replace "" with ISBLANK()/BLANK(), that is IF(ISBLANK(Dept_Rank_Summary[Col2]),BLANK(),CONCATENATE(...))

parry2k
Super User
Super User

@craigmon make sure to add this as a measure:

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Thanks for that although i'm not really sure i I put the below as a measure as its a text column?

 

Concate = if(Dept_Rank_Summary[Col2]="", "", CONCATENATE(Dept_Rank_Summary[Rank3], " "& "(" & Dept_Rank_Summary[Col2]) & ")")

parry2k
Super User
Super User

@craigmon you can use HASONEFILTER or HASONEVALUE 

 

Test = IF ( HASONEVALUE ( Table[Column] ), <<your logic>>, "Select a department" )

 

Follow us on LinkedIn

 

Check my latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Thanks for that. I must be doing something wrong as the below just continues to show select a department

 

Test = IF ( HASONEVALUE ( Dept_Rank_Summary[Department] ), if(Dept_Rank_Summary[Col2]="", "", CONCATENATE(Dept_Rank_Summary[Rank3], " "& "(" & Dept_Rank_Summary[Col2]) & ")"), "Select a department" )

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.