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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.