Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a series of Button Objects that each reference a specific Cell
and pastes that cell to a different sheet within the Workbook. (There are additional macros "searching for the next available cell in a column as well, all working well) My problem is that some of the cells contain more than 255 characters and once pasted, all you see on the final page is either a cut off version (because the row doesn't expand) or "#################". Is there any way I can either format the specific range of cells or something I can add in my code to allow the expansion of the Rows when the Text exceeds the existing row height? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Mike,
Set the RowHeight of the receiving cell the same as the copied cell... Worksheets(1).Range("B2").EntireRow.RowHeight = _ Worksheets(2).Range("B5").EntireRow.RowHeight Jim Cone San Francisco, USA "MK@Hartford" wrote in message oups.com I have a series of Button Objects that each reference a specific Cell and pastes that cell to a different sheet within the Workbook. (There are additional macros "searching for the next available cell in a column as well, all working well) My problem is that some of the cells contain more than 255 characters and once pasted, all you see on the final page is either a cut off version (because the row doesn't expand) or "#################". Is there any way I can either format the specific range of cells or something I can add in my code to allow the expansion of the Rows when the Text exceeds the existing row height? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy/Paste Row Height | Excel Discussion (Misc queries) | |||
Trouble with copy & paste from Visa web site | Excel Worksheet Functions | |||
can you copy and paste row height formatting in excel | Excel Discussion (Misc queries) | |||
Copy/Paste Macro & Formatting Issues | Excel Programming | |||
Trouble with copy and paste | Excel Programming |