I have two columns, Column 1 contains dates and Column 2 contains values, like so:
Col1 Col2
1/1/20 5
1/1/20 7
1/2/20 3
1/2/20 9
1/2/20 4
1/3/20 6
1/3/20 6
What formula could I put in Column 3 that would return "TRUE" or "FALSE" if the value in Column 2 is the largest value and not a duplicate value for all the values with the same date? When I mean duplicate value, the first 6 on 1/3/20 would be "TRUE" and the second 6 on 1/3/20 would be "FALSE".
Bonus Points: I'm trying to put this in an array function that I've based on the following website: Extract all rows from a range that meet criteria in one column
So I have the array function making a table out of the rows that have a value equal to or greater than a specified value. It is displaying multiple values that have the same date and I just want the highest value for that day showing.
Col1 Col2
1/1/20 5
1/1/20 7
1/2/20 3
1/2/20 9
1/2/20 4
1/3/20 6
1/3/20 6
What formula could I put in Column 3 that would return "TRUE" or "FALSE" if the value in Column 2 is the largest value and not a duplicate value for all the values with the same date? When I mean duplicate value, the first 6 on 1/3/20 would be "TRUE" and the second 6 on 1/3/20 would be "FALSE".
Bonus Points: I'm trying to put this in an array function that I've based on the following website: Extract all rows from a range that meet criteria in one column
So I have the array function making a table out of the rows that have a value equal to or greater than a specified value. It is displaying multiple values that have the same date and I just want the highest value for that day showing.