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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

How to create Distinct Column Count using DirectQuery?

 

Dept. Name

Office Location

Desk Type

Count Desk Type By Dept. Name.

Finance

Left-Side Office Dept.

Complex

2

Finance

Left-Side Office Dept.

Basic

2

Finance

Right-Side Office Dept.

Complex

2

HR

First Floor

L-Shape

1

HR

Second Floor

L-Shape

1

IT

Third Floor

U-Shape

3

IT

Fourth Floor

Basic

3

IT

Fifth Floor

Complex

3

IT

Sixth Floor

U-Shape

3

 

The goal is to create the calculated column “Count Desk Type by Dept. Name”.

This column is built off of the distinct count of desk type for each dept. name.

How would we accomplish this in Power BI?

 

I must create this Column in the Query Editor using Power Query.

NOTE: This is for DirectQuery. It is NOT possible to do,
“Add Column” in DAX.

Count Desk Type by Office Name =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Desk Type] ),
ALLEXCEPT ( 'Table', 'Table'[Office Name] )
)

CALCULATE IS NOT SUPPORTED BY DAX DirectQuery.

3 REPLIES 3
amitchandak
Super User
Super User

@Anonymous , You should able to create this as a measure like that. I doubt you can create a complex column like that in direct query.

 

new measure =CALCULATE (
DISTINCTCOUNT ( 'Table'[Desk Type] ),
ALLEXCEPT ( 'Table', 'Table'[Office Name] )
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

@amitchandak  

cshepler_0-1618323132148.png


See the above image. This is not possible when using DirectQuery.
It would appear that what I am trying to do is Impossible for DirectQuery.
In BOTH, DAX or Power Query.

Hi @Anonymous ,

 

Please create a measure not column:

Measure =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Desk Type] ),
ALLEXCEPT ( 'Table', 'Table'[Office Name] )
)

Or you can try using power query.

Please refer this thread:

https://community.powerbi.com/t5/Desktop/count-distinct-on-column-in-power-query/m-p/165494 

 

 

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

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

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.