ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Solution To Auto Height For Merged Cells (https://www.excelbanter.com/excel-programming/370604-solution-auto-height-merged-cells.html)

JoJo

Solution To Auto Height For Merged Cells
 

If anyone is interested, I found a way to automatically adjust a row
height based on merged cells text. Here's how I did it...

In a cell unmerged and on the same row as the merged cells, enter the
formula = merged cells and set the formula cell to the same column
width as the combined merged cells. For example: Merged cells are
B2:D2, formula in F2 is "=B2". Then set column F width to match merged
cells. So if the merged cells combined column width is 30, set column F
width 30.

Then in the worksheet VBA, use this code. This will automatically
adjust the row height after the text in cell B2 is entered.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 2 Then
ActiveSheet.Rows(2).AutoFit
End If
End Sub

Happy VBAing.


--
JoJo
------------------------------------------------------------------------
JoJo's Profile: http://www.excelforum.com/member.php...o&userid=11307
View this thread: http://www.excelforum.com/showthread...hreadid=572423



All times are GMT +1. The time now is 01:17 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com