ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Row autoheight for merged cells (https://www.excelbanter.com/excel-programming/327266-row-autoheight-merged-cells.html)

René van Kessel

Row autoheight for merged cells
 
Hello,

In Excel I have merged cells to one cell. Now I can't let Excel
automatically set the height of the row. The merged cell contains multiple
lines (#10).
When a row does not contain any merged cells then this works fine.

From Delphi I tried following without succes:

Excel.Rows[2].EntireRow.AutoFit;

Any ideas?
Thanks.
René



Bernie Deitrick

Row autoheight for merged cells
 
Rene,

You need to use a macro - see below, written by Jim Rech. Select the cell
and run the sub.

HTH,
Bernie
MS Excel MVP

Sub AutoFitMergedCellRowHeight()
Dim CurrentRowHeight As Single, MergedCellRgWidth As Single
Dim CurrCell As Range
Dim ActiveCellWidth As Single, PossNewRowHeight As Single
If ActiveCell.MergeCells Then
With ActiveCell.MergeArea
If .Rows.Count = 1 And .Cells(1).WrapText = True Then
Application.ScreenUpdating = False
CurrentRowHeight = .RowHeight
ActiveCellWidth = ActiveCell.ColumnWidth
For Each CurrCell In Selection
MergedCellRgWidth = CurrCell.ColumnWidth + _
MergedCellRgWidth
Next
.MergeCells = False
.Cells(1).ColumnWidth = MergedCellRgWidth
.EntireRow.AutoFit
PossNewRowHeight = .RowHeight
.Cells(1).ColumnWidth = ActiveCellWidth
.MergeCells = True
.RowHeight = IIf(CurrentRowHeight PossNewRowHeight, _
CurrentRowHeight, PossNewRowHeight)
End If
End With
End If

End Sub



"René van Kessel" wrote in message
...
Hello,

In Excel I have merged cells to one cell. Now I can't let Excel
automatically set the height of the row. The merged cell contains multiple
lines (#10).
When a row does not contain any merged cells then this works fine.

From Delphi I tried following without succes:

Excel.Rows[2].EntireRow.AutoFit;

Any ideas?
Thanks.
René






All times are GMT +1. The time now is 09:33 AM.

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