J
Jim
if your Range.EntireRow contains merged cells how can you test for that and
if true, unmerge the cells?
i have something like this but not working.
Function MergeSub( )
Dim rng as Range
Set rngFound = Range("A140")
If rng.MergeCells = True Then
rngFound.EntireRow.MergeCells = False
End If
End Function
if true, unmerge the cells?
i have something like this but not working.
Function MergeSub( )
Dim rng as Range
Set rngFound = Range("A140")
If rng.MergeCells = True Then
rngFound.EntireRow.MergeCells = False
End If
End Function