+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 16

Thread: Dynamic Chart Title in 2010 without access to formula bar

  1. #1
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Dynamic Chart Title in 2010 without access to formula bar

    Hello everyone. I have been searching online at multiple forums and cannot seem to find the answer to my exact situation. I am trying to create a dynamic Chart title. I have four charts that are on a separate page that change dynamically based on the information on a separate worksheet. When I select the title I can only edit the text box that it is in. I cannot access the formula bar and in fact, the entire formula tab has everything grayed out. I at all possible I want to avoid having to use vba code to make this work as I have found that it slows down the worksheet on older machines that we have here. I am using Excel 2010 and have tried using the =cell reference and &cell reference to no avail. Thanks in advance for your help!
    Last edited by foxgoku; 01-25-2012 at 11:12 AM.

  2. #2
    Valued Forum Contributor dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    New Delhi, India
    MS-Off Ver
    Excel 1997, 2000, XP, 2003, 2007, 2010
    Posts
    2,398

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Hi foxgoku,

    Welcome to the forum.

    Do you want chart title via formulas? Yes this is possible, see the attachment.

    Regards,
    DILIPandey

    <click on below 'star' if this helps>
    Attached Files Attached Files
    DILIPandey
    +919810929744
    dilipandey@gmail.com

  3. #3
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Yes that is what I want, but I can't find where I can put the formula in to make this happen. When I click ton the actual text box for the chart title the formula box is inactive. I guess I just don't know the proper way to do this. Can you help?

  4. #4
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Post duplicated from above.
    Last edited by foxgoku; 01-23-2012 at 12:20 PM.

  5. #5
    Valued Forum Contributor dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    New Delhi, India
    MS-Off Ver
    Excel 1997, 2000, XP, 2003, 2007, 2010
    Posts
    2,398

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Hi foxgoku,

    It is already done. If you check the chart, its title is coming from sheet 3 not from sheet 1 where it has all the data source.
    For your quick reference, I have attached a screenshot image. Thanks.

    Regards,
    DILIPandey

    <click on below 'star' if this helps>
    DILIPandey
    +919810929744
    dilipandey@gmail.com

  6. #6
    Valued Forum Contributor dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    New Delhi, India
    MS-Off Ver
    Excel 1997, 2000, XP, 2003, 2007, 2010
    Posts
    2,398

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Hi foxgoku,

    It is already done. If you check the chart, its title is coming from sheet 3 not from sheet 1 where it has all the data source.
    For your quick reference, I have attached a screenshot image. Thanks.

    Regards,
    DILIPandey

    <click on below 'star' if this helps>
    Attached Images Attached Images
    DILIPandey
    +919810929744
    dilipandey@gmail.com

  7. #7
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Dynamic Chart Title in 2010 without access to formula bar

    DILIPandey thanks for all your help thus far. I mean I can't find where I can insert the formula on my worksheet. Also, when looking at your worksheet, I can verify that it is changing dynamically but I cannot find where the formula was inserted to make this happen. What I am looking for is a "How to" do what you did with that title so I can duplicate on my worksheets and future ones if need be. I simply cannot find the location where you put in the formula to make the title change dynamically.

  8. #8
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    2003 & 2007 & 2010
    Posts
    11,351

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Cheers
    Andy
    www.andypope.info

  9. #9
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    2003 & 2007 & 2010
    Posts
    11,351

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Does this help?
    http://www.andypope.info/tips/tip001.htm

    Duplicate post due to forum malfunction
    Cheers
    Andy
    www.andypope.info

  10. #10
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Unfortunately, no...This is what I was trying to achieve but I cannot access the formula bar for the Chart Titles like I mentioned in the OP. I would like to add something like =Data!$A$1&" "&Data!$C$2, =Data!$A$1&" "&Data!$D$2, =Data!$F$1&" "&Data!$H$2, and =Data!$F$1&" "&Data!$I$2. for the chart titles in the worksheet "graphs". How can I get this done?
    TOI P1dB Template.xlsx

  11. #11
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    2003 & 2007 & 2010
    Posts
    11,351

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Your chart objects are embedded on a chart sheet so you can not access the formula bar.

    Either move each chart to a worksheet and make the link before moving back the the chart sheet.
    Or use VBA once to make the connects. Changing object index and cell range to suit.

    activesheet.chartobjects(1).chart.charttitle.text ="=Data!P1"
    Whichever way you do it you will need to use a holding cell to cope with the concatenation.
    Cheers
    Andy
    www.andypope.info

  12. #12
    Valued Forum Contributor dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    New Delhi, India
    MS-Off Ver
    Excel 1997, 2000, XP, 2003, 2007, 2010
    Posts
    2,398

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Hi foxgoku,

    See the chart on the data tab itself where I have moved one from the top right side of the charts and here it is taking the formula as in chart title.. rest you can do R&d..
    Thanks.

    Regards,
    DILIPandey


    <click on below 'star' if this helps>
    Attached Files Attached Files
    DILIPandey
    +919810929744
    dilipandey@gmail.com

  13. #13
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Thanks guys that did the trick. One final thing that isn't too big of a deal. Is there a way to set the scaling on the graphs/charts to a specific cell? I'm looking at setting the scale based on what the input values are. If not no biggie. Thanks a bunch for that, I never would have thought it was because of being in that sheet.

  14. #14
    Valued Forum Contributor dilipandey's Avatar
    Join Date
    12-05-2011
    Location
    New Delhi, India
    MS-Off Ver
    Excel 1997, 2000, XP, 2003, 2007, 2010
    Posts
    2,398

    Re: Dynamic Chart Title in 2010 without access to formula bar

    You are welcome foxgoku..

    As far as I know charts scaling does'nt allow formulas / references... though vba can be a solution.
    Suggest you to come up with another post for this problem so that other can also get benefit out of it if they search it respectively. Thanks.


    Regards,
    DILIPandey

    <click on below 'star' if this helps>
    DILIPandey
    +919810929744
    dilipandey@gmail.com

  15. #15
    Registered User
    Join Date
    01-20-2012
    Location
    Riverside, CA
    MS-Off Ver
    Excel 2010
    Posts
    7

    Re: Dynamic Chart Title in 2010 without access to formula bar

    Thanks everyone for the great help!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.2.0