Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
Creating a report using table visual with lots of column used.In that i need to use a rank function like sql query which is showed below.
Rank() OVER(PARTITION BY table."policyno"
ORDER BY table."Loc_no" DESC ,table."vers_no" DESC
Is it possible?
Solved! Go to Solution.
@NISHA_S , Try a Rankx as a new column
ranxk(filter(Table, [policyno] = earlier([policyno]) , calculate([Loc_no] & "-" & [vers_no]) , , desc, dense)
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns
@NISHA_S , Try a Rankx as a new column
ranxk(filter(Table, [policyno] = earlier([policyno]) , calculate([Loc_no] & "-" & [vers_no]) , , desc, dense)
For Rank Refer these links
https://radacad.com/how-to-use-rankx-in-dax-part-1-of-3-calculated-columns