Hi Everyone,
Trying to use MAX and IF functions(Based in excel) within a table to find a Date value (MAX_DATE) in a custom column. I want Max date based on AssetID to populate in the MaxDate column.
Here's an example of the dataset.
ASSET_ID | END_DATE | MAX_DATE |
100 | 6/30/2017 | 9/1/2019 |
100 | 6/30/2017 | 9/1/2019 |
100 | 9/1/2019 | 9/1/2019 |
100 | 6/30/2017 | 9/1/2019 |
101 | 6/30/2017 | 11/1/2019 |
101 | 11/1/2019 | 11/1/2019 |
101 | 6/30/2018 | 11/1/2019 |
102 | 6/30/2017 | 3/1/2020 |
102 | 3/1/2020 | 3/1/2020 |
102 | 6/30/2017 | 3/1/2020 |
102 | 9/1/2019 | 3/1/2020 |
103 | 12/31/2019 | 12/31/2021 |
103 | 12/31/2021 | 12/31/2021 |
Thanks in advance for your help!!!