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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

tornado chart (percentage and real number together)

I have 2 tornado charts, i would like to see percantage and the real number together as data label, if it is possible (without creating a bookmark)? many thanks in advance.
Expected Answer:
4832K (26%) 914K (25%)


Tornado_Percent =
DIVIDE (
    CALCULATE ( [AOP @FY24 + AOP @FY25] ),
    CALCULATE (
        [AOP @FY24 + AOP @FY25],
        ALLEXCEPT ( 'Calendar', 'Calendar'[Fiscal Year] )
    )
)



Setosa_0-1712742680416.png

 

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

As checked the Format pane settings, there is no option to customize the data label of tornado chart...

vyiruanmsft_0-1714556630503.png

Best Regards

Anonymous
Not applicable

thanks but i guess it is not working.

johnbasha33
Super User
Super User

@Anonymous 
To display both the real number and the percentage together as data labels in your tornado charts, you can concatenate them within your measure. Below is a modified version of your measure Tornado_Percent:
Tornado_Percent_Label =
VAR TotalAmount = CALCULATE ( [AOP @FY24 + AOP @FY25] )
VAR TotalAmountAllYears =
CALCULATE (
[AOP @FY24 + AOP @FY25],
ALLEXCEPT ( 'Calendar', 'Calendar'[Fiscal Year] )
)
VAR Percentage = DIVIDE ( TotalAmount, TotalAmountAllYears )
RETURN
FORMAT ( TotalAmount, "#,##0" ) & " (" & FORMAT ( Percentage, "0%" ) & ")"

Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.