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 John Tel 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. NaughtyPine

    Wraps or breaks in chart label using vba

    I would but the client requires that the chart be developed in this manner.
  2. NaughtyPine

    Wraps or breaks in chart label using vba

    Any idea how to implement this using chartWizard?
  3. NaughtyPine

    Wraps or breaks in chart label using vba

    In my case the label is not part of a single cell but as part of combining 3 individual cells.
  4. NaughtyPine

    Wraps or breaks in chart label using vba

    Hi, I have a label that I would like to have wrap. See below Current Label: text 1 - text 2 - text 3 I would like Text 1 Text 2 Text 3 How would I do this with vba?
  5. NaughtyPine

    Use eternal .xls for data source in vba

    Oh yeah, I simply made my file open the other file and copy the cell data into a worksheet in my project. Then i just called the data. ------------- Dim wb As Workbook Set wb = Workbooks.Open"filename.xls", True, True) ' open the source workbook, read only With...
  6. NaughtyPine

    Use eternal .xls for data source in vba

    I found a different solution. Thanks for the help.
  7. NaughtyPine

    Use eternal .xls for data source in vba

    Charts.Add ActiveChart.ChartType = xlRadarMarkers ActiveChart.SetSourceData Source:=Workbooks("spiderdata.xml").Sheets("Data"). _ Range("A1:K20"), PlotBy:=xlColumns ActiveChart.Location Where:=xlLocationAsObject, Name:="Sheet1" ActiveChart.HasTitle = False...
  8. NaughtyPine

    Use eternal .xls for data source in vba

    The recorded macro doesn't help.
  9. NaughtyPine

    Use eternal .xls for data source in vba

    This is not working :( Any more ideas?
  10. NaughtyPine

    Use eternal .xls for data source in vba

    I need to target an external .xls to create a chart in my project. I have: - - - - - - - - - - - With ActiveChart .ChartType = xlPieExploded .ChartWizard _ Source:=Sheets(Data).Range(myrange), _ Gallery:=xlLine, Format:=4, PlotBy:=xlRows, _...

Part and Inventory Search

Back
Top