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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Boveitj
Frequent Visitor

Hide Card Values until that Value Type is selected on the Chart?

Example: I have a chart that tracks operators performance with most of the charts having operators name on the x-axis and a performance metric on the y-axis. When the dashboard is loaded, a random name populates the card visual which I would like to show as just a blank card until an operator is selected. I use this card so operators names can be read since often times they are small or cut off on the chart. 

1 ACCEPTED SOLUTION
KHorseman
Community Champion
Community Champion

Write a measure and use that on the card.

 

Selected Operator = IF(
	HASONEVALUE(TableName[OperatorName]),
	FIRSTNONBLANK(TableName[OperatorName], 1),
	" "
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
KHorseman
Community Champion
Community Champion

Write a measure and use that on the card.

 

Selected Operator = IF(
	HASONEVALUE(TableName[OperatorName]),
	FIRSTNONBLANK(TableName[OperatorName], 1),
	" "
)




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Amazing, Thank you so much! 

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!

December 2024

A Year in Review - December 2024

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