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

How to calculate average amount of orders per day, weeks, months, etc.

I need help with getting the average qty of invoices PSIXXXX (No - field) based on the day posted (Posting_Date)

 

Data.png

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@LogixAdex , Create date table a having day , week and month

The create measure like 

 

divide(sum(table[Qty]), distinctcount(Date[Year Week]) )

 

or a measure like

 

Averagex( Values(Date[Week Year]), Calculate( Sum(Table[QTY])) )

View solution in original post

v-jayw-msft
Community Support
Community Support

Hi @LogixAdex ,

 

You could create a measure like below:

Measure = CALCULATE(AVERAGE('Table'[qty]),FILTER(ALLEXCEPT('Table','Table'[order]),WEEKNUM('Table'[date])=WEEKNUM(SELECTEDVALUE('Table'[date]))))

Capture.PNG

For per day and per month, just change the corresponding condition in the formula.

 

Best Regards,

Jay

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

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

Hi @LogixAdex ,

 

You could create a measure like below:

Measure = CALCULATE(AVERAGE('Table'[qty]),FILTER(ALLEXCEPT('Table','Table'[order]),WEEKNUM('Table'[date])=WEEKNUM(SELECTEDVALUE('Table'[date]))))

Capture.PNG

For per day and per month, just change the corresponding condition in the formula.

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

@LogixAdex , Create date table a having day , week and month

The create measure like 

 

divide(sum(table[Qty]), distinctcount(Date[Year Week]) )

 

or a measure like

 

Averagex( Values(Date[Week Year]), Calculate( Sum(Table[QTY])) )

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.

Top Solution Authors