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. cashr23523

    Problem Creating Excel Charts w/VBA

    I was using something like this but once I changed 31 to 30 it worked fine. // If str > 31 then it is passed to this function which returns the truncated string Public Function truncName(ByVal name As String) As String name = Mid(name, 1, 31) <-- Had to be changed to 30 truncName = name...
  2. cashr23523

    Problem Creating Excel Charts w/VBA

    I am working on a project that consists of importing several CSV files into an Excel workbook, then for each worksheet creating custom charts based off the numerical data in the worksheet. Everything works fine until I encounter a CSV file with a name longer than 31 characters in which I use to...

Part and Inventory Search

Back
Top