Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not 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 depending upon certain condition. For example for 6th June,2024 I had 4 products so I should be showing the names of those 4 products accordingly as tooltip. Any suggestions will be very helpful. Thanking u all in advance for your help.

1 ACCEPTED SOLUTION
ManuelBolz
Responsive Resident
Responsive Resident

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Anonymous ,

 

According to your statement, I think you may want to create a dynamic tooltips.

Due to your requirement is based on your data model, please share a sample file with us and you can show us a screenshot with the result you want. This will make it easier for us to find the solution.

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

ManuelBolz
Responsive Resident
Responsive Resident

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors