Minimum/Maximum Dates in Range

G

Guest

In a range of selected cells, I want to find and store the minimum date in a
variable called MinDate, and the maximum date in a variable called MaxDate.
How do I do that? Thanks!
 
L

Leith Ross

In a range of selected cells, I want to find and store the minimum date in a
variable called MinDate, and the maximum date in a variable called MaxDate.
How do I do that? Thanks!

Hello Steve,

You can use the Worksheet Min and Max functions on the dates. In VBA
you can assign the results to your variables like this...

MinDate = ActiveSheet.WorksheetFunction.Min("A1:A10")
MaxDate = ActiveSheet.WorksheetFunction.Max("A1:A10")

Change the range "A1:A10" to whatever you are using. To run this
another Worksheet that isn't the ActiveSheet, replace ActiveSheet
with...

Worksheets(<Sheet Name>).WorksheetFuntion.Min("A1:A10")
Worksheets(<Sheet Name>).WorksheetFuntion.Max("A1:A10")

Sincerely,
Leith Ross
 
D

Dave Peterson

dim MinDate as date
dim MaxDate as date

mindate = application.min(selection)
maxdate = application.max(selection)
 
G

Guest

Fabulouso! Thank you both.
--
Steve C


Dave Peterson said:
dim MinDate as date
dim MaxDate as date

mindate = application.min(selection)
maxdate = application.max(selection)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top