FInd Max Date for When Field Value is the same but record # is different
Hello,
I have a table that represents the same logic as below:
Record ID | Name | Date
1 | Fred | 12/1/20
2 | Fred | 12/2/21
3 | Joe | 6/7/19
4 | Joe | 8/16/21
5 | Sam | 2/7/20
I need some way to summarize the Maximum date when the name field is the same. I want another column that would populate a field in all columns containing "Fred" with 12/2/21, Freds Max date. So it would look like below:
Record ID | Name | Date | Max Date
1 | Fred | 12/1/20 | 12/2/21
2 | Fred | 12/2/21 | 12/2/21
3 | Joe | 6/7/19 | 8/16/21
4 | Joe | 8/16/21 | 8/16/21
5 | Sam | 2/7/20 | 2/7/20
------------------------------
Mackenzie Phillips
------------------------------