Forum Discussion
Boveitj
9 years agoFrequent 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 na...
- Anonymous9 years ago
Write a measure and use that on the card.
Selected Operator = IF( HASONEVALUE(TableName[OperatorName]), FIRSTNONBLANK(TableName[OperatorName], 1), " " )
Anonymous
9 years agoNot applicable
Write a measure and use that on the card.
Selected Operator = IF( HASONEVALUE(TableName[OperatorName]), FIRSTNONBLANK(TableName[OperatorName], 1), " " )
Boveitj
9 years agoFrequent Visitor
Amazing, Thank you so much!