I have a little problem in excel. I not experienced with excel macros and would be grateful for some help. I am trying to find a macro which ajustes the height of a merged c
There is a much easier way of doing this if you allow the Excel sheet to do some of the heavy lifting for you.
The following example works in the common scenario that you have some cells that comprise several columns but only a single row (i.e. some columns are merged together on a single row). The usual problem is that the row height for wrapped text in the merged cell does not accomodate the height of the wrapped text in some circumstances (e.g. the result of a formula or database lookup gives a large and varying amounts of text)
To solve this, simulate single celled versions of the merged cells by doing the following in some columns that are not visible to the user:
Write a function that loops through all of these named single cell ranges and calls the following function for each:
Private Sub AutosizeLongFormInput(rng As Range)
If Not rng.EntireRow.Hidden = True Then
rng.EntireRow.AutoFit
End If
End Sub