Forum Discussion
Clive_Rabson
Jun 10, 2024Brass Contributor
Finding the Latest date in a range of dates
With thanks to: Peter Bartholomew; djclements and Sergei Baklan. I am nearly finished on this project that must find the earliest, latest and peak dates in a range of dates. I now need to...
- Jun 11, 2024
Criteria which columns to select is in MOD( COLUMN(...
To select every 4th row in the range we may use criteria
MOD(COLUMN($D3:$AQ3) - COLUMN($D3)+1,4)=0
entire formula
=AGGREGATE(14,6, $D3:$AQ3 /( (MONTH($D3:$AQ3)*100+DAY($D3:$AQ3)) = AGGREGATE(14,6,( MONTH($D3:$AQ3)*100+DAY($D3:$AQ3) )/(MOD(COLUMN($D3:$AQ3) - COLUMN($D3)+1,4)=0),1) ),1)
Clive_Rabson
Jun 14, 2024Brass Contributor
Sergei. Thanks for all the help you have given me with this project. You are the best !
SergeiBaklan
Jun 14, 2024MVP
Clive_Rabson , you are welcome, thank you