M
Marcus Ostman
Why does this work...
=WORK("A1")
Function WORK(Cell)
RNG = Range(Cell).Value
MsgBox RNG
End Function
.... but not this?
=WORK(A1)
Function WORK(Cell as Range)
RNG = Range(Cell).Value
MsgBox RNG
End Function
/Marcus
=WORK("A1")
Function WORK(Cell)
RNG = Range(Cell).Value
MsgBox RNG
End Function
.... but not this?
=WORK(A1)
Function WORK(Cell as Range)
RNG = Range(Cell).Value
MsgBox RNG
End Function
/Marcus