Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
ExcelMonke
Super User
Super User

Summarize Tables with TopN / RankX Help

Hello, I am trying to get a summarized table that filters the TopN / Rank for a given aggregation. For some detail, I have the following table of data:
Table 1: "Encounters"

Dept ID  EncounterID  Date
111

32453245

1/1/2023
22232462623

2/4/2023

333656543333/7/2023
1112658776511/2/2022
111 11/4/2022
2223687476912/1/2023
333 8/3/2023
111736584981/21/2023
444476943627/9/2023

 

This table "Inter" has a relationship with the following table, one to many relationship to 'Encounter' based on DeptID

DeptID  DeptID2  DeptName  
111ABCJim's Facility
222DEFBob's Facility
333GHIJane's Facility
444JKLMary's Facility

 

This table in turn is has a relationship one to many with table 3 "DeptListing" as following

DeptID2  DeptName  
ABCJim's Facility
DEFBob's Facility
GHIJane's Facility
JKLMary's Facility

 

My intended result is this:

DeptNameEncounter Count
Jim's Facility3
Bob's Facility2
Jane's Facility1
Mary's Facility1

 

I have currently tried this to no avail:

 

Summarized Table by Top N = 
VAR _N = 4
VAR _SUMMARIZED =
    SUMMARIZE (Inter, 
    DeptListing[DeptName],
    "Encounter Count", COUNT(Encounters[EncounterID]))
VAR _ADDRANK =
    ADDCOLUMNS ( _SUMMARIZED, "RANK", RANKX ( _SUMMARIZED, [DeptName],, DESC ) )
VAR _TopN =
    SUMMARIZE ( FILTER ( _ADDRANK, [RANK] <= _N ),  [DeptName])
RETURN
    _TopN

 

 

Any help is appreciated!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @ExcelMonke ,

Below is my table1:

vxiandatmsft_0-1703136482347.png

Below is my table2 :

vxiandatmsft_1-1703136502539.png

Below is my table3:

vxiandatmsft_2-1703136522830.png

The following DAX might work for you:

 

Measure = CALCULATE(
    COUNTROWS(Encounters),
    FILTER(Encounters,Encounters[Encounter ID]<>BLANK()),
    ALL(Encounters)
)

 

The final output is shown in the following figure:

vxiandatmsft_3-1703136602880.png

 

 

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @ExcelMonke ,

Below is my table1:

vxiandatmsft_0-1703136482347.png

Below is my table2 :

vxiandatmsft_1-1703136502539.png

Below is my table3:

vxiandatmsft_2-1703136522830.png

The following DAX might work for you:

 

Measure = CALCULATE(
    COUNTROWS(Encounters),
    FILTER(Encounters,Encounters[Encounter ID]<>BLANK()),
    ALL(Encounters)
)

 

The final output is shown in the following figure:

vxiandatmsft_3-1703136602880.png

 

 

Best Regards,

Xianda Tang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors