RicksAtWork
Programmer
I have the following code:
Dim rng As Range
Set rng = Range("J6", "J88")
RoundRange (rng)
Where Roundrange is the following sub:
Private Sub RoundRange(rng As Range)
'currently does nothing
End Sub
I get an error on the line:
RoundRange (rng)
Even though there is no code in the sub!!!
What am I doing wrong?
Dim rng As Range
Set rng = Range("J6", "J88")
RoundRange (rng)
Where Roundrange is the following sub:
Private Sub RoundRange(rng As Range)
'currently does nothing
End Sub
I get an error on the line:
RoundRange (rng)
Even though there is no code in the sub!!!
What am I doing wrong?