Hi Guys,
I have 3 columns
1 - Unique ID
2 - Submission Date
3 - Status
I managed to pull the max date of the unique ID using :
GROUP BY :
Unique ID
NEW COLUMN:
Col Name: MaxDate, Operation: Max, Column Submt Date
THEN:
Expand All, each Max Date = Submission Date.
However I have instances where for a particular Unique ID there are multiple occurrence of the exact same date.
Is there a way to pull only a max date where the max date occurs once (e.g. not a max date deriving of the same exact dates)?
So final output would be:
1 - Unique list of Unique IDs
2 - Max Date (deriving from unique max dates, not from multiple exact same dates)
3 - Status related to the Max Date
Thank you in advance!
Prinz
I have 3 columns
1 - Unique ID
2 - Submission Date
3 - Status
I managed to pull the max date of the unique ID using :
GROUP BY :
Unique ID
NEW COLUMN:
Col Name: MaxDate, Operation: Max, Column Submt Date
THEN:
Expand All, each Max Date = Submission Date.
However I have instances where for a particular Unique ID there are multiple occurrence of the exact same date.
Is there a way to pull only a max date where the max date occurs once (e.g. not a max date deriving of the same exact dates)?
So final output would be:
1 - Unique list of Unique IDs
2 - Max Date (deriving from unique max dates, not from multiple exact same dates)
3 - Status related to the Max Date
Thank you in advance!
Prinz