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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
chonchar
Helper V
Helper V

Count occurrences of domains - specific user

@parry2k @Erokor 

 

Good morning, All,

 

I have a table as seen below called "Fiscal 23." In that table I have multiple columns. Two of which are "Screened By" and "Domain."

chonchar_0-1697631541937.png

I currently have a count of ALL domains totals as a measure. 

 

What I need now is a measure that caclulates the Domain totals less 1 specified user in the Screened By Column. 

 

I will use myself as the example. Notice I have 3 occurrences of my domain in the above table. 

 

I would like the measure to output this:

 

chonchar_1-1697631754413.png

Notice that there are only four occurrences of domains (minus the three that are tied to the user name "chonchar."

 

Thank you,

 

Cam

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @chonchar ,

Please try to create a measure with below dax formula:

Measure =
VAR cur_domain =
    SELECTEDVALUE ( 'Table'[Domain] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), 'Table'[Screened By] <> "CHONCHAR" )
VAR tmp1 =
    CALCULATETABLE (
        VALUES ( 'Table'[Screened By] ),
        FILTER ( tmp, [Domain] = cur_domain )
    )
VAR _result =
    COUNTROWS ( tmp1 )
RETURN
    _result

Add a table visual with field and measure:

vbinbinyumsft_0-1697770185507.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
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

2 REPLIES 2
Anonymous
Not applicable

Hi @chonchar ,

Please try to create a measure with below dax formula:

Measure =
VAR cur_domain =
    SELECTEDVALUE ( 'Table'[Domain] )
VAR tmp =
    FILTER ( ALL ( 'Table' ), 'Table'[Screened By] <> "CHONCHAR" )
VAR tmp1 =
    CALCULATETABLE (
        VALUES ( 'Table'[Screened By] ),
        FILTER ( tmp, [Domain] = cur_domain )
    )
VAR _result =
    COUNTROWS ( tmp1 )
RETURN
    _result

Add a table visual with field and measure:

vbinbinyumsft_0-1697770185507.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@Anonymous 

 

Great Solution. Thank you very much. 

 

That measure (which works) only counts the distinct occurrences of the domains. 

 

How would I count the occurrences of each of those domains in my data model and not just the distinct users?

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors