Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Team,
I have below data:
A | B | Date |
---|---|---|
1 | 111 | 01-01-1996 |
1 | 111 | 01-01-1997 |
1 | 111 | 01-01-1998 |
!
I want output ( maximum of the date) in straight chart as below:
A | B | Date |
---|---|---|
1 | 111 | 01-01-1998 |
Means, I want max of date for single value of A,B. Can anyone help me out?
try this
Aggr(Max(Date),B)
or
Aggr(Max(Date),A,B)
No..Not working. It is giving me max among all values. Not according to Column A,B
Hi Vipin
try Date(max(Date))
Many Thanks
Karthik
It is also not working Karthik.
PFA...
Thanks a lot P M
It is working fine. I was doing silly mistake.
Thanks once again for your help.
Check this out