At the moment, the "Field" in Card Visualization only allows either First Value or Last Value, which could be quite misleading.
I would like to add an additional option to display a customized text when no value has been selected yet.
For example, if the user hasn't clicked on any values in the table or in the graph, then the card should display as "-", or "Choose the Product Name", etc.
- Comments (1)
Comments (1)
RE: Card Visualization
MEASURE will let you configure this! Just learned this week. Example:
Script Descr = IF( DISTINCTCOUNT('XRef'[Analytic Name]) = 1 ,
FIRSTNONBLANK('XRef'[x.Summary Description],'XRef'[x.Summary Description]) ,
"Select specific analytic to display description.")