I have a following spreadsheet, which contains the timestamp, a numerical result, and the time (duration) took to calculate the result.
From this I need to calculate maximum value of Duration in 2019
I tried something like this, but the function YEAR is not supported on the MAXIFS.
MAXIFS(B3:B100, YEAR(A3:A100), 2019)
Is there a way to do it using MAXIFS, or if there's a better way to do it using built-in methods. I want to avoid using Macros.
Any help/suggestion would be appreciated.