Forum Discussion

Boveitj's avatar
Boveitj
Frequent Visitor
9 years ago
Solved

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 na...
  • Anonymous's avatar
    Anonymous
    9 years ago

    Write a measure and use that on the card.

     

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