View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default find max value in macro

By definition a constant isn't variable. Unless you're trying to chnage
your code modules on the fly...

You could set a variable to that value:

Dim dMax As Double
dMax = Application.WorksheetFunction.Max(Range("C2:C" & Rows.Count))


In article ,
Steve wrote:

I want to define a constant in my macro to be the maximum value in the range
from c2 to the the last row in column c.