다음을 통해 공유


Range.UnMerge Method (Excel)

Separates a merged area into individual cells.

Syntax

.UnMerge

A variable that represents a Range object.

Example

This example separates the merged range that contains cell A3.

With Range("a3") 
 If .MergeCells Then 
 .MergeArea.UnMerge 
 Else 
 MsgBox "not merged" 
 End If 
End With

참고 항목

개념

Range Object Members

Range Object