Hi Guys,
I have the unfixable problem of needing auto row height to merged cells
I have the following code
Which applies the auto row height to row 16, but how would i do the same for rows 16 thru 216
Thanks for any help
I have the unfixable problem of needing auto row height to merged cells
I have the following code
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row = 16 Then
ActiveSheet.Rows(16).AutoFit
End If
End Sub
Which applies the auto row height to row 16, but how would i do the same for rows 16 thru 216
Thanks for any help