+ Reply to Thread
Results 1 to 9 of 9

Macro Variable Code

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    09-30-2010
    Location
    Minnesota, USA
    MS-Off Ver
    Excel 2010
    Posts
    109

    Re: Macro Varible Code

    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
    Last edited by shg; 10-01-2010 at 04:03 PM. Reason: fix code tags

  2. #2
    Forum Expert davegugg's Avatar
    Join Date
    12-18-2008
    Location
    WI, US
    MS-Off Ver
    2010
    Posts
    1,884

    Re: Macro Varible Code

    Try this instead:

    Sub Calulated_Average1()
    
    Dim oRangeSelected As Range
    Dim MyAverageIs As Double
    Dim dblTotal As Double
    Dim intCellCount As Integer
    Dim c As Object
    
    '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
        For Each c In oRangeSelected.Cells
            dblTotal = dblTotal + CDbl(c.Value)
            intCellCount = intCellCount + 1
        Next c
        ActiveCell.Value = dblTotal / intCellCount
        'message box is not needed but may help you
        MsgBox "You selected: " & oRangeSelected.Address(External:=True)
    End If
    
    End Sub
    Is your code running too slowly?
    Does your workbook or database have a bunch of duplicate pieces of data?
    Have a look at this article to learn the best ways to set up your projects.
    It will save both time and effort in the long run!


    Dave

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1