VBA look through sheets and pull back min date

Finalfight40

Active Member
Joined
Apr 24, 2018
Messages
273
Office Version
  1. 365
Platform
  1. Windows
Hi All

I am looking for some help with a bit of VBA.

What i am looking to do is loop through the last few sheets (all but first 2, e.g. if i have 5 sheets it will look at the last 3, 6 sheets look at last 4 etc) and look at the row of the active cell and pull back the min date.

For example if on:

Sheet 3 the min date is 04/05/2018
Sheet 4 the min date is 30/05/2018
Sheet 5 the min date is 13/03/2018

the result in my active cell will be 13/03/2018 and ignore the others.

I will find the active cell by using the find function and the amount of sheets will be variable, also they will be named.

Thank you in advance for any help.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hi

Code:
Sub AcrossSheets()
Dim r As Range, i%, v, res
res = 1E+77                 ' big number
For i = 3 To ThisWorkbook.Sheets.Count
    Sheets(i).Activate
    Set r = Intersect(ActiveSheet.UsedRange, ActiveCell.EntireRow)
    ' find minimum value on the row, excluding zeros
    v = Evaluate("=small(" & r.Address & ",countif(" & r.Address & ",0)+1)")
    If v < res Then res = v
Next
Sheets(1).[e15] = res       ' write result
End Sub
 
Upvote 0
Thank you Worf

This seems like a much cleaner way as opposed to the way i was approaching it.

I will store this with the list of other VBA tips i have learnt over the past couple months.

Much appreciated!
 
Upvote 0

Forum statistics

Threads
1,214,405
Messages
6,119,315
Members
448,886
Latest member
GBCTeacher

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