memo.xight.org

日々のメモ

カテゴリ : VBA

1ページ目 / 全1ページ

Excelで結合されたセルを探すVBA

Summary

結合されたセルがあると動かないVBAスクリプトがあったので…。

' usage
' Call("Sheet1", "A1", "Z100")
Sub findMergedCell(strWorkSheet As String, strStartCell As String, strEndCell As String)
Dim cl
Dim msg
Dim rng
rng = strStartCell & ":" & strEndCell
For Each cl In Worksheets(strWorkSheet).Range(rng)
If cl.MergeCells = True Then
If cl.MergeArea(1).Address = cl.Address Then
msg = msg & vbCrLf & cl.Address
End If
End If
Next
MsgBox msg
End Sub