Returns an Areas collection that represents all the ranges in a multiple-area selection. Read-only.
For information about returning a single member of a collection, see Returning an Object from a Collection.
Remarks
For a single selection, the Areas property returns a collection that contains one object
Example
This example displays a message if the user tries to carry out a command when more than one area is selected. This example must be run from a worksheet.
If Selection.Areas.Count > 1 Then
MsgBox "Cannot do this to a multi-area selection."
End If