Forum Discussion
rainchong7401
3 years agoHelper III
How to Rank without the same ID
Hi Friends, How do I do ranking within the same vouchers & find the latest accountnum I have. As expected output shown in the picture. I want to do it in "Data" add column and add it in. Kindly a...
- 3 years ago
Hi,
Please try something like below.
Please check the below picture and the attached pbix file.
Rank CC = RANKX ( FILTER ( Data, Data[Voucher] = EARLIER ( Data[Voucher] ) ), Data[AccountNum], , DESC )
Jihwan_Kim
3 years agoSuper User
Hi,
Please try something like below.
Please check the below picture and the attached pbix file.
Rank CC =
RANKX (
FILTER ( Data, Data[Voucher] = EARLIER ( Data[Voucher] ) ),
Data[AccountNum],
,
DESC
)
rainchong7401
3 years agoHelper III
Kamsahamnida hyung.
Really appreacited your respond.