passing Range name as an argument to WorksheetFunction

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
The code below for some reason does not work. I tried to pass the range between " " but did not work. Any help would be appreciated

Code:
  ' did not work either
  Cells(1, 3).Value = WorksheetFunction.Sum("myrange")

Code:
Sub worksheetfunctions()


    Range("a1:a20").Name = "myrange"
    Range("myrange").Value = WorksheetFunction.RandBetween(1, 100)
    
     ''''''' all functions below did not work  '''''''''''''''''''''''''
    Cells(1, 3).Value = WorksheetFunction.Sum(myrange)
    Cells(2, 3).Value = WorksheetFunction.Average(myrange)
    Cells(3, 3).Value = WorksheetFunction.CountA(myrange)
    Cells(4, 3).Value = WorksheetFunction.Max(myrange)
    Cells(5, 3).Value = WorksheetFunction.Min(myrange)
    
End Sub
 
Last edited:

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
It needs to be
Code:
WorksheetFunction.Sum(Range("MyRange"))
 
Upvote 0

Forum statistics

Threads
1,215,361
Messages
6,124,497
Members
449,166
Latest member
hokjock

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top