Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Yup.. I am good. Do you still want me to post my dummy source data that I have been using? and if so whats the best way to do this. Thanks for all you help.
  2. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    tried to attach a pic of the source data from Excel but I am not sure it worked.
  3. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Here is the latest code... ' global variable Public nodetext As String Sub org_chart() Dim oSAlayout As SmartArtLayout ' nodes for each level of chart Dim rootnode As SmartArtNode Dim nodes_lvl2 As SmartArtNode Dim nodes_lvl3 As SmartArtNode Dim nodes_lvl4 As SmartArtNode Dim...
  4. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Well Skip.. I have an update. I have the org chart logic working probably 95% done. I am generating the nodes from top to bottom then left to right. The logic is generating nodes down to the 4th level still have to test for the max level of five. But what is really frustrating is that I can not...
  5. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    no.. recording a macro does not help. tried the below without success. Can only change manually. I think it has to do with Primary Theme Colors. I will do some more research tomorrow. node.Shapes.ShapeStyle = msoLineStylePreset8
  6. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Skip-Is it best to add nodes from left to right per level (horizontally) or is it best to add nodes from top to bottom(vertically) then left to right. No matter which way I don't know how to retain the parent nodes so that nodes can be added below or adjacent to a child node. The max vertical...
  7. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Thanks for the idea Skip. I haven't gotten the detailed specs so I am not sure whether it will be one org chart or several but I will do some research on table structures as well as how to add nodes horizontally and vertically. I will keep you updated. Thanks again for all you help on this ...
  8. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Skip - saw your comments.. Thanks so much. I agree the max loop counts will change based on the rows on SHEET("data") just trying to get as simple program working first. I plan on using A1 cell value as the root of the org chart. I will try your suggestions on the fore and back colors. Have a...
  9. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Skip - sorry it took so long to write back .. things got busy this week. I decided to go with the SMARTART org chart object. Found the reference# by using the commented code below. Here is what seems to work getting nodes added. Still have more to figure out...thanks for all your help for...
  10. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Thanks so much Skip .. I will try all of your suggestions and let you know how I make out.
  11. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    Skip - I have done some research on the web alot of what I have found refers to EXCEL 2003 code which does not seem to work. I tried adding a watch but I can not seem to assign the chart to an object so that I can look at its properties. I have also tried recording a MACRO. All I get is the line...
  12. babsannjoy

    EXCEL ORGANIZATION CHART ADD-IN

    I have installed the Organization Chart add-in into EXCEL 2010. Using EXCEL 2010 VBA code I want to add an organization chart then add nodes. I also want to populate the nodes using text from an imported .CSV file located on another worksheet. Here is what I have so far: sub org_chart...

Part and Inventory Search

Back
Top