For example:-
Policy No Date
1 10/12/2013
1 1/8/2012
1 23/06/2013
For policy no1 result would be 23/06/2013. I dont have any transaction number for each date to pick. Please let me know, if anybody has solution.
Thanks,
Srini.
A couple of ways to manage this shrini.
but with some brute force:
[minDate]:
minimum([Namespace].[Query Subject].[Date] for [Policy No])
Then, filter for:
[Namespace].[Query Subject].[Date]=[minDate]
This will leave you with only the 1st record.
If you want all records to show up, allow a rank on dates per Policy No to become your ID's:
rank([Date] for [Policy No])
Thanks MDX, I got it.