Skip to content

Latest commit

 

History

History
44 lines (22 loc) · 822 Bytes

68586bba-fa9c-e0d4-0eae-a08613551a2c.md

File metadata and controls

44 lines (22 loc) · 822 Bytes

Range.MergeArea Property (Excel)

Returns a Range object that represents the merged range containing the specified cell. If the specified cell isn't in a merged range, this property returns the specified cell. Read-only Variant .

Syntax

expression . MergeArea

expression A variable that represents a Range object.

Remarks

The MergeArea property only works on a single-cell range.

Example

This example sets the value of the merged range that contains cell A3.

Set ma = Range("a3").MergeArea 
If ma.Address = "$A$3" Then 
 MsgBox "not merged" 
Else 
 ma.Cells(1, 1).Value = "42" 
End If

See also

Concepts

Range Object

Other resources

Range Object Members