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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
webportal
Impactful Individual
Impactful Individual

Define the granularity for "day" when calculating NumOfDays?

Hello,

 

When calculating the average sales per day, I have the following measure for NumOfDays:

 

NumOfDays = IF (
    [Sales Amount] > 0; 
    COUNTROWS ( Date )
)

What this is doing is removing the number of days for those dates when there are no sales.

 

Thus, I have the following visual:

Capturar.JPG

 

As you can see, the total is wrong. 

This is due to the fact that the database has more years than those shown in the matrix. 

How can I define the granularity for "day" when calculating NumOfDays?

That is, how can I count the rows for those days with sales only?

 

Thanks!

Man Happy

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @webportal,

 

In your scenario, you can create a measure like below:

 

NumOfDays = CALCULATE(COUNTROWS('Adventure Works'),FILTER('Adventure Works',SUM('Adventure Works'[Internet Sales Amount])>0))

 

q4.PNG

 

Best Regards,
Qiuyun Yu

Community Support Team _ Qiuyun 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
v-qiuyu-msft
Community Support
Community Support

Hi @webportal,

 

In your scenario, you can create a measure like below:

 

NumOfDays = CALCULATE(COUNTROWS('Adventure Works'),FILTER('Adventure Works',SUM('Adventure Works'[Internet Sales Amount])>0))

 

q4.PNG

 

Best Regards,
Qiuyun Yu

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

Hi,

 

Sure, that one is working, thank you!

 

Also, this one:

 

NumOfDays2 =
CALCULATE (
    DISTINCTCOUNT ( 'Date'[Date] );
    FILTER ( 'Date'; Sales[Sales Amount] > 0 )
)

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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