Forum Discussion
dtartaglia
Resolver I
10 years agoShowing a tooltop on line chart with multiple values
Hi, In the below chart, one Tool is selected (Adobe Photoshop) and I can display the tooltip using: ToolTipToolName = VALUES(SurveyDataTransposed[Tool]) as a Measure: If multiple too...
- 10 years ago
The error messages is quite straightforward, to get a scalar value, check below measure.
ToolTipToolName = CONCATENATEX ( VALUES ( SurveyDataTransposed[Tool] ), SurveyDataTransposed[Tool], "," )
Eric_Zhang
Microsoft Employee
10 years ago
The error messages is quite straightforward, to get a scalar value, check below measure.
ToolTipToolName =
CONCATENATEX (
VALUES ( SurveyDataTransposed[Tool] ),
SurveyDataTransposed[Tool],
","
)dtartaglia
Resolver I
10 years agoHi Eric,
Thanks for the response. I know some database and new to BI and DAX. Still feeling my way around.