Help with Error 424 Object Required

ForumExcel

New Member
Joined
Jan 17, 2017
Messages
21
Second sub invokes the first. I am getting Error 424 Object required error! Could you please help me with why?
The first sub works fine if I uncomment the commented line and comment the following one

Code:
Sub ShowRangeValues(myRange As Range)
  Dim rng As Range
  Dim cll As Range, i As Integer, a(100) As Variant
'  Set rng = Range(Range("A2:B2"), Range("A2:B2").End(xlDown)).SpecialCells(xlCellTypeVisible)
  
  Set rng = myRange
  i = 0
  For Each cll In rng
    a(i) = cll.Value
    Debug.Print a(i)
    i = i + 1
  Next
Debug.Print "Done"
End Sub


Sub TestShowRangeValues()
  Dim rng As Range
  Set rng = Range(Range("A2:B2"), Range("A2:B2").End(xlDown)).SpecialCells(xlCellTypeVisible)
  ShowRangeValues (rng)
End Sub
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
This line is the problem:

Code:
ShowRangeValues (rng)

It should be either:

Code:
ShowRangeValues rng

or:

Code:
Call ShowRangeValues(rng)

You don't use brackets unless you use the Call keyword, are using the return value of a function, or are explicitly trying to evaluate or dereference an argument.
 
Upvote 0
Actually that's a pretty common mistake so don't feel bad! ;)
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,284
Members
452,630
Latest member
OdubiYouth

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