oldest date

kenpcli

Board Regular
Joined
Oct 24, 2017
Messages
129
I currently have this code:
myDate = Sheets(Sheets(activeSheetName).Name).Range("B" & iDefault)

But I need it to pull the oldest date in column ignoring the time.
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Not even going to ask what you are trying to do with how you are defining the sheet name :eek: :ROFLMAO: but try the below.

Code:
Sub findlowdate()
MsgBox CDate(Int(Application.Min(Sheets(Sheets(activeSheetName).Name).Range("B2:B" & Sheets(Sheets(activeSheetName).Name).Range("B" & Rows.Count).End(xlUp).Row))))
End Sub
 
Upvote 0
Not even going to ask what you are trying to do with how you are defining the sheet name :eek: :ROFLMAO: but try the below.

Code:
Sub findlowdate()
MsgBox CDate(Int(Application.Min(Sheets(Sheets(activeSheetName).Name).Range("B2:B" & Sheets(Sheets(activeSheetName).Name).Range("B" & Rows.Count).End(xlUp).Row))))
End Sub

It's not my original code, I am trying to clean up someone elses.
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,517
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top