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
andre_kauber
Frequent Visitor

DAX summarize count of values filtering on a different column

I'm stuck on a simple one, also looked in the dax manual but I'm not able to find the solution. 

I want to obtain a count of, say, transactions by date, filtering on a different column. So, let's say I have the table 'cool', the columns [Date], [Transactions], and a third column with object sold [Object]. I want to create a new table, containing the dates and the count of transactions.

 

Table = SUMMARIZE('Cool','Cool'[Date],"Sales",COUNT('Cool'[Transactions]))

 

Now, how can I obtain the count of transactions per date for 'Cool'[Object]="Toy"?

 

Thanks

 

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @andre_kauber,

 

You could modify your formula as below:

Table =
SUMMARIZE (
    FILTER ( Cool, Cool[Object] = "Toy" ),
    Cool[Date],
    "Sales", COUNT ( Cool[Transactions] )
)

Regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
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

3 REPLIES 3
v-yulgu-msft
Employee
Employee

Hi @andre_kauber,

 

You could modify your formula as below:

Table =
SUMMARIZE (
    FILTER ( Cool, Cool[Object] = "Toy" ),
    Cool[Date],
    "Sales", COUNT ( Cool[Transactions] )
)

Regards,
Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello! What I have to do if I need filter by two or more criterias?

Thank you!

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.