• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Automation of Data Label in Chart

AbhijitV

New Member
Request your help for automatic updation of data lables in the chart. Data labels includes amount in Rs mn and % . File is enclosed for perusal. When I am changing the amount, amount and % should be automatically changed in the chart

Please provide the solution
 

Attachments

  • Chart example.xlsx
    282.3 KB · Views: 3
You need a helper column.

In Helper column use something like
=TEXT(ROUND(B5,2),"0.00")&CHAR(10)&"("&ROUND(C5,0)&"%)"
and "Wrap Text".

Then highlight each data label, go to formula bar and reference corresponding cell in the helper column.
 

Attachments

  • Chart example_Helper.xlsx
    248.3 KB · Views: 7
Back
Top