Sub SelectionRangeActive() If ActiveSelectionRange.Count = 1 Then MsgBox "There is only one shape selected in the shape range." ElseIf ActiveSelectionRange.Count = 0 Then MsgBox "There are no shapes selected in the shape range." Else MsgBox "There are " & ActiveSelectionRange.Count & " shapes in the selected shape range." End IfEnd Sub