Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
hi there
i need a dax formula but in power bi , i have an table , that table has two column , one of the column name is "date" and has some dates , and the other column's name is "quantity" , this quantity named column has some quantities , i want to calculate the total quantity for each week of the current month, where a week starts on Monday and ends on Sunday.
Here is my table :
i want to calculate the total quantity for each week of the current month, where a week starts on Monday and ends on Sunday , as below table .
@erhan_79 , Try a new column like
Month Week =
var _monthweek = (eomonth([Date],-1)+1) -WEEKDAY((eomonth([Date],-1)+1),2)+1 //monday
var _week = [Date] -WEEKDAY([Date],2)+1 //monday
return
QUOTIENT(DATEDIFF(_monthweek,_week,DAY),7)+1
Convert to text then
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
82 | |
71 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
58 | |
57 |