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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Using RankX and AddColumn to a Virtual Table

I am trying to create a formula that will first rank the data based on the [Date-Calendar] column grouped by the Claim Num (Full), then count the rows where the Rank = 1. 

 

Here is my formula:

 

 

Test = 

VAR vTable = 
    ADDCOLUMNS(
        SUMMARIZE('FACT Daily Claims', 
            'FACT Daily Claims'[Claim Num (Full)], 
            'FACT Daily Claims'[Date - Calendar], 
            'FACT Daily Claims'[Claim Status (Date)]
        ),
        "Count",
            1,
        "Rank by Group",
            RANKX(
                FILTER(ALL('FACT Daily Claims'), 'FACT Daily Claims'[Claim Num (Full)] = vClaimNum),
                [Date - Calendar],,DESC
            )
    )

RETURN
COUNTROWS(
    FILTER(vTable, 
        [Rank by Group] = 1
    )
)

 

 

 

Sample Data would be

Claim Num (Full)Date - CalendarClaim Status (Date)
11/10/2021Open
21/8/2021Open
21/19/2021Open
11/15/2021Closed

 

I need the value to return 2. 

2 REPLIES 2
wdx223_Daniel
Super User
Super User

wdx223_Daniel_0-1611217377749.png

 

AlB
Super User
Super User

Hi @Anonymous 

I'm not sure I follow. How is this: 

      first rank the data based on the [Date-Calendar] column grouped by the Claim Num (Full), then count the rows where the Rank = 1

different from  simply doing a DISTINCTCOUNT  of Claim Num Full, i.e. the number of groups??

 

Please mark the question solved when done and consider giving a thumbs up if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

 

SU18_powerbi_badge

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors