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

Question about Tooltips

Hello

 

i want to create in powerbi  analog dashboard like in Azure DevOps (Boards):

alnovikov_0-1608107221693.png

on my Matrix Table visulisation diplay more detain information (work item id, min,max and etc) which and want add to Tooltips, but if i added those values, they aren't correct dispplay, view total value (but i want view by work item id, in example bellow i want to view max Cycle Time of work items is 22 

 

alnovikov_2-1608107514087.png

 

 

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @Anonymous ,

 

Please check if this is what you want:

WorkItem of MaxCycleTime =
VAR MaxCycleTime =
    MAXX (
        FILTER ( ALLSELECTED ( 'Table' ), 'Table'[WeekNum] = MAX ( 'Table'[WeekNum] ) ),
        [Cycle Time]
    )
VAR t =
    FILTER ( 'Table', 'Table'[Cycle Time] = MaxCycleTime )
RETURN
    CONCATENATEX ( t, [WorkItem], ", " )

workitem.jpg

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

View solution in original post

4 REPLIES 4
Icey
Community Support
Community Support

Hi @Anonymous ,

 

But in your data, the max Cycle Time of work items is "33". Why do you want to show "22"? Are there any rules?

alnovikov_2-1608107514087.png

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

Anonymous
Not applicable

i want to display ID for different values (for max,min, mediana).

I know how found min/max/mediana values, but i can't know how found ID for thsse values, i think about:

var a = MAX(...)

var b = LOOKUPVALUE(
items[Work Item Id],items[TT],a)

return b

Icey
Community Support
Community Support

Hi @Anonymous ,

 

Please check if this is what you want:

WorkItem of MaxCycleTime =
VAR MaxCycleTime =
    MAXX (
        FILTER ( ALLSELECTED ( 'Table' ), 'Table'[WeekNum] = MAX ( 'Table'[WeekNum] ) ),
        [Cycle Time]
    )
VAR t =
    FILTER ( 'Table', 'Table'[Cycle Time] = MaxCycleTime )
RETURN
    CONCATENATEX ( t, [WorkItem], ", " )

workitem.jpg

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

amitchandak
Super User
Super User

@Anonymous , I think you have use isinscope and force different subtotal -https://www.kasperonbi.com/use-isinscope-to-get-the-right-hierarchy-level-in-dax/

Or you can create a meausre to give that value and add that to tooltip or create a tooltip page with such a measure

https://docs.microsoft.com/en-us/power-bi/desktop-tooltips

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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