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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
ovonel
Post Prodigy
Post Prodigy

when to use count instead of DistinctCount?

I am doing a quick course on DAX in datacamp... they have created this measure:

Transaction count = Count([FactInternetSale[SalesOrderNumber])

 

And then using it to do:
Average Transaction = DIVIDE([Total Sales], [Transaction Count])

 

Why they used Count and not CountDistinct?

This seems wrong... Same SalesOrderNumber might appear 100 times, and Count shall count 100 orders...

3 REPLIES 3
Anonymous
Not applicable

Hello @ovonel 
They are using count to show the average of each transaction and each transaction has a different ID. In this case, you can use both COUNT and DISTINCTCOUNT. You should use COUNT as this will increase the performance.

Anonymous
Not applicable

no se usa  CountDistinct, ya que solo se estaria contando los campos distintos del campo [Transaction Count]),

el promedio se toma de la sumatoria de los datos y se divide en  la cantidad de datos. sin importar que sean iguales 

Jihwan_Kim
Super User
Super User

Hi, @ovonel 

I think, in the FactInternetSales Table, SalesOrderNumber Column is the primary key column. If I am not wrong, the result might be the same.

 

Hi, My name is Jihwan Kim.

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Visit my LinkedIn page by clicking here.


Schedule a meeting with me to discuss further by clicking here.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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