View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Ko Vijn[_3_] Ko Vijn[_3_] is offline
external usenet poster
 
Posts: 6
Default Max WorksheetFunction

procedure works fine with me, even with text in the given range


"Bob Phillips" schreef in bericht
...
Is t7:T64 all numeric, or is there some text in there?

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"solo" wrote in message
...
I have a sub that looks like the one below but it gives me an error when

I
try to run it, it compiles fine and I cannot seem to know whats wrong.

sub FindMax()

Dim VarMaxVal As Variant
VarMaxVal = 0
Dim myRange As Range

Set myRange = Worksheets("Sheet1").Range("T7:T64")
VarMaxVal= Application.WorksheetFunction.Max(myRange)

End Sub