Forum Discussion
Anonymous
2 years agoNot applicable
Query regarding tooltip
Hello All, Is there a way I can display multiple values in a measure. If yes pls let me know. My scenario is that I want to display across each day certain number of product names as tooltip depend...
- 2 years ago
Hello Anonymous,
ProductNamesTooltip = VAR SelectedDate = SELECTEDVALUE('Product'[Date]) RETURN CALCULATE( CONCATENATEX( FILTER( 'Product', 'Product'[Date] = SelectedDate && <YourCondition> ), 'Product'[ProductName], ", " ) )
Best regards from Germany
Manuel Bolz
If this post helped you, please consider Accept as Solution so other members can find it faster.
🤝Follow me on LinkedIn
ManuelBolz
Responsive Resident
2 years agoHello Anonymous,
ProductNamesTooltip =
VAR SelectedDate = SELECTEDVALUE('Product'[Date])
RETURN
CALCULATE(
CONCATENATEX(
FILTER(
'Product',
'Product'[Date] = SelectedDate && <YourCondition>
),
'Product'[ProductName],
", "
)
)
Best regards from Germany
Manuel Bolz
If this post helped you, please consider Accept as Solution so other members can find it faster.
🤝Follow me on LinkedIn