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

Average sales excluding blank days

Hello everyone,

 

with the calculation below I was able to calculate the average daily sales as seen on the screen below, but I would need to adjust my calculation to exclude blank/zero days. Could you please help? The expected result is average of the two values in column "Net Sales".

 

Original calculation:

Daily AVG = 
VAR selectedDate = SELECTEDVALUE('Date'[Date])

VAR Res = SELECTEDVALUE(Restaurant[Restaurant Name]) 

RETURN

CALCULATE(SUM('Daily Sales Report'[Net Sales]); MONTH('Date'[Date])=MONTH(selectedDate); YEAR('Date'[Date])=YEAR(selectedDate); Restaurant[Restaurant Name]= Res)/CALCULATE(DISTINCTCOUNT('Date'[Date]);MONTH('Date'[Date])=MONTH(selectedDate); YEAR('Date'[Date])=YEAR(selectedDate); Restaurant[Restaurant Name]= Res;'Daily Sales Report'[Net Sales]>0)

tktom_0-1648216767852.png

 

Thanks,

 

Tomas

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Daily Avg =
var selectedDate = SELECTEDVALUE('Date'[Year month])
var result = AVERAGEX( ADDCOLUMNS( 
   CALCULATETABLE( VALUES( 'Date'[Date]), REMOVEFILTERS('Date'), 
      'Date'[Year month] = SELECTEDVALUE('Date'[Year month]) ),
   "@val", CALCULATE( [Net Sales] ),
[@val])
return result

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Daily Avg =
var selectedDate = SELECTEDVALUE('Date'[Year month])
var result = AVERAGEX( ADDCOLUMNS( 
   CALCULATETABLE( VALUES( 'Date'[Date]), REMOVEFILTERS('Date'), 
      'Date'[Year month] = SELECTEDVALUE('Date'[Year month]) ),
   "@val", CALCULATE( [Net Sales] ),
[@val])
return result
tktom
Frequent Visitor

Thank you, highly appreciated!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.