Can someone explain why?
Hi,
Here is the situation:
I use EXCEL 2003
If I apply the following it does not work:
-------------------------------------------------------
Sub test()
Dim maxnumber As Integer, rngMax As Range
Sheets("Planif-max52").Select
Set rngMax = Worksheets("Rap-ELC").Range("B2:B53")
maxnumber = Application.WorksheetFunction.Max(rngMax)
MsgBox maxnumber
End Sub
But this does with the ActiveSheet.Range
--------------------
Sub test()
Dim maxnumber As Integer, rngMax As Range
Sheets("Planif-max52").Select
Set rngMax = ActiveSheet.Range("B2:B53")
maxnumber = Application.WorksheetFunction.Max(rngMax)
MsgBox maxnumber
End Sub
P.S: The column is define as General
Thank's ahead
|