My goal is to find the most recent date in column A (the date in column A is determined by a formula) and filldown one row from the most recent date in column A through column T.
I am able to locate the most recent date in column A utilizing
Max_date = Application.WorksheetFunction.Max(Columns("A"))
but when I try to identify it in a range I am unsuccessful.
Below is the total of failing code:
Sub Find_Date()
Dim Max_date As Date
Max_date = Application.WorksheetFunction.Max(Columns("A"))
Worksheets("Sheet1").Range("A" & Max_date).End(xlDown).FillDown
End Sub
I am able to locate the most recent date in column A utilizing
Max_date = Application.WorksheetFunction.Max(Columns("A"))
but when I try to identify it in a range I am unsuccessful.
Below is the total of failing code:
Sub Find_Date()
Dim Max_date As Date
Max_date = Application.WorksheetFunction.Max(Columns("A"))
Worksheets("Sheet1").Range("A" & Max_date).End(xlDown).FillDown
End Sub