phweston
Programmer
- May 8, 2003
- 38
I am working this macro that copies several sheets into another workbook.
One of the cells has text that keeps getting cut off. I checked the # of characters in the original cell, and it totalled around 472 characters total.
Here is part of the code:
vMacroBook = ActiveWorkbook.Name
strPath = Range("Path_Save").Text
ThisWorkbook.Worksheets("Industry").Copy
NewBookName = ActiveWorkbook.Name
ThisWorkbook.Worksheets("Summary").Copy Before:=Workbooks(NewBookName).Sheets(1)
Any thoughts or suggestions as too how to deal with this one cell where half of the text in one cell gets cut off?
One of the cells has text that keeps getting cut off. I checked the # of characters in the original cell, and it totalled around 472 characters total.
Here is part of the code:
vMacroBook = ActiveWorkbook.Name
strPath = Range("Path_Save").Text
ThisWorkbook.Worksheets("Industry").Copy
NewBookName = ActiveWorkbook.Name
ThisWorkbook.Worksheets("Summary").Copy Before:=Workbooks(NewBookName).Sheets(1)
Any thoughts or suggestions as too how to deal with this one cell where half of the text in one cell gets cut off?