Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi Team,
I have Geo Map based on Category (Country wise) and while cursor hover to any country (under Category) it shows below tooltips.
for ex : Country is under category 1 then tooltips shows 3 description.

Tooltips:

@Anonymous - Try creating a measure like this:
Tooltip Measure =
VAR __Category = MAX('Table'[Category])
RETURN
CONCATENATEX(
FILTER(ALL('Tooltips'),'Tooltips'[Category] = __Category),
[Description],
","
)
@Anonymous ,
Check if report tooltip page can help
https://docs.microsoft.com/en-us/power-bi/desktop-tooltips
Or contact the data into one column and show
https://docs.microsoft.com/en-us/dax/concatenatex-function-dax
https://docs.microsoft.com/en-us/dax/concatenate-function-dax
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.