Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I need help with getting the average qty of invoices PSIXXXX (No - field) based on the day posted (Posting_Date)
Solved! Go to Solution.
@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])) )
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]))))
For per day and per month, just change the corresponding condition in the formula.
Best Regards,
Jay
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]))))
For per day and per month, just change the corresponding condition in the formula.
Best Regards,
Jay
@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])) )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 9 | |
| 7 | |
| 6 |