+ Reply to Thread
Results 1 to 10 of 10

Macros and Charts

Hybrid View

  1. #1
    Registered User
    Join Date
    05-30-2007
    Posts
    15

    Macros and Charts

    I'm looking to create a macro that brings up a bar graph automatically (so that you don't have go through the Wizard and all that). That's the easy part.

    I'm also looking for a way to count a specific number of names to put in that chart. Example: I have a column entitled Supplier Name. I want the chart to take all of the names in the column, add them up and then put them on the bar graph. So for instance, Name A appeared 10 times in the column, it would be counted automatically and then put into the graph. Name B appeared 12 times, that would be counted and put into the graph and so on.

    Also, only the top 7 Names would be recorded in the graph. Maybe what I'd have to do is have a seperate (maybe hidden?) column that adds up the names and places them in numeric order, then have the graph pull from these numbers, but I'm not sure how to go about doing that, nor am I sure how to set the macro up.

  2. #2
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967
    Sounds like you need a combination of a recorded macro for the chart, a COUNTIF function for the names and a sort to get the top 7.

    Can you supply a copy of the spreadsheet so that we can see where the data is?
    Martin

  3. #3
    Registered User
    Join Date
    05-30-2007
    Posts
    15
    Ok, I've added an attachment. I'm new to the boards and it didn't let me attach the excel file, so I took a screenshot of the data and put it into a word document. I'll explain the file a bit.

    As you can see, I've only filled out the Supplier name column for this, because for now its all I need. Again, I need to find some way to add up of the names and then create a bar graph for the data using a macro of some sort.

    EX)
    ACI Electronics - 1
    Actel - 2
    Advanced Graphics - 4
    Aeroflex Laboratories - 2
    Alcoa Global - 2
    Anixter Pentacon - 2
    API Deltran - 1
    Arrow Electronics - 2
    Advanced Inustries - 1
    Beaver - 1

    And again only the top 7 would get addressed in the graph. Thanks in advance.
    Attached Files Attached Files

  4. #4
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967
    If you add the Excel file to ZIP file, you will be able to attach it then.

    Saves a bit of typing...

  5. #5
    Registered User
    Join Date
    05-30-2007
    Posts
    15
    Ah I gotcha. Ok, the information is different now (the supplier name column I mean) but here is the zipped file
    Attached Files Attached Files

  6. #6
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967
    Try attachment using the button on the Floor page
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    05-30-2007
    Posts
    15
    Wow that's brilliant. Thank you so much. A few follow-up questions though, if you don't mind.

    First of all, can you give me an idea of what's going on in this code? Just a little explanation? I'm trying to learn VBA as best as can on the fly sort of, and that code confuses the crap out of me. Also, is there anything you should absolutely not do? Something that blows up the code so to speak? I'm just asking because this isn't meant for me, but for a few other people in the company I work for, one of them my boss.

    Also, is there any way to populate the X axis of the chart with the actual names of the supplier?

  8. #8
    Registered User
    Join Date
    05-30-2007
    Posts
    15
    Now also for some reason I get a Method 'Cells' of object global failed error. I didn't think I did anything to affect it but apparently I did.

    It's on this line:
    For N = 11 To Cells(65536, 3).End(xlUp).Row

  9. #9
    Forum Expert mrice's Avatar
    Join Date
    06-22-2004
    Location
    Surrey, England
    MS-Off Ver
    Excel 2013
    Posts
    4,967
    To get the supplier names, we need to swap the final two lines of code

    ActiveChart.SetSourceData Source:=Sheets("Working sheet").Range("B2:B8")
    ActiveChart.SeriesCollection(1).XValues = "='Working sheet'!R2C1:R8C1"
    The problem with the error will be due to the chart being the selected item when the macro was run. Cells only exist on the worksheet.

    The code works by working through your list of suppliers and if a new one is found adding a new row into the working sheet. If an existing one is found then it adds one to the total. There is then a sort and the source data for the graph is set.

    Hope this helps.

  10. #10
    Registered User
    Join Date
    05-30-2007
    Posts
    15
    It helped a ton. Thanks again.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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.6.0 RC 1