Home |
Search |
Today's Posts |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I guess you assumed he meant column A instead of row A. I was wondering how cells in row have can have a different row height than cell A1. I was thinking he wanted extra line feeds in the cells, but, on further consideration that seems unlikely. I suppose we will hear from him again if your assumption was not correct.
On Saturday, November 22, 2014 1:23:28 PM UTC-5, Claus Busch wrote: Hi, Am Sat, 22 Nov 2014 10:12:55 -0800 (PST) schrieb GWC: A1 contains 11 lines. Other cells in row A contain one to 10 lines. How can I get all cells in Row A to have the same row-height as A1? try: Sub height() Dim LRow As Long With ActiveSheet LRow = .Cells(Rows.Count, 1).End(xlUp).Row .Range("A2:A" & LRow).RowHeight = _ .Range("A1").RowHeight End With End Sub Regards Claus B. -- Vista Ultimate / Windows7 Office 2007 Ultimate / 2010 Professional |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how to split one cell into multiple rows? | Excel Discussion (Misc queries) | |||
Sum automatically every cell in multiple rows | Excel Worksheet Functions | |||
Need to split a cell into multiple rows | Excel Programming | |||
Copy Multiple Rows into One Cell | Excel Discussion (Misc queries) | |||
How do I split a cell into multiple rows/columns? | Excel Discussion (Misc queries) |