March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
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:
Solved! Go to Solution.
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.
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
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.
@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.
Try to replace "" with ISBLANK()/BLANK(), that is IF(ISBLANK(Dept_Rank_Summary[Col2]),BLANK(),CONCATENATE(...))
@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]) & ")")
@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" )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
86 | |
83 | |
72 | |
49 |
User | Count |
---|---|
167 | |
149 | |
98 | |
73 | |
57 |