Forum Discussion
arhomberg
Jun 28, 2021Copper Contributor
Determining If a Record Is the Most Recent in the Sheet
Hello Everyone, I am working to try and find a function that will help me determine if a specific record is the most recent within the sheet. I have a sheet that holds a large amount of historica...
- Jun 28, 2021
If you run Excel 2019/365, in C2:
=IF(B2 = MAXIFS(B$2:B$12,A$2:A$12,A2), TRUE, FALSE)Otherwise, in D2 and validate with Ctrl+Shift+Enter:
=IF(B2 = MAX((A$2:A$12=A2)*B$2:B$12), TRUE, FALSE)Corresponding sample attached
Lorenzo
Jun 28, 2021Silver Contributor
If you run Excel 2019/365, in C2:
=IF(B2 = MAXIFS(B$2:B$12,A$2:A$12,A2), TRUE, FALSE)Otherwise, in D2 and validate with Ctrl+Shift+Enter:
=IF(B2 = MAX((A$2:A$12=A2)*B$2:B$12), TRUE, FALSE)Corresponding sample attached