this is what I have
Sub Calulated_Average1()
Dim oRangeSelected As Range
Dim MyAverageIs As Double
On Error Resume Next
Set oRangeSelected = Application.InputBox("Please select a range of cells!", _
"SelectARAnge Demo", Selection.Address, , , , , 8)
If oRangeSelected Is Nothing Then
MsgBox "It appears as if you pressed cancel!"
Else
MyAverageIs = Application.WorksheetFunction.Average(oRangeSelected)
ActiveCell.Value = MyAverageIs
'message box is not needed but may help you
MsgBox "You selected: " & oRangeSelected.Address(External:=True)
End If
End Sub
Bookmarks