March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Register NowGet certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi,
I need to obtain the difference of a value between the row's date and the previous working day, for each project:
PROJECT - DATE - VALUE (on date)- Difference (of Value) from the last working date
I assume that the first step is obtaining the table:
DATE - PREVIOUS WORKING DATE to merge with the table with values.
I have managed to get it in DAX, as an added column in Power BI, but I need to convert it into M to add the column to the query. The sintax I have used and which works is:
Previous working day=
MAXX(
FILTER (Dates, Dates[Dateslist] < EARLIER(Dates[Dateslist])
&& WEEKDAY(Dates[Dateslist];3) <5);
DATES[Dateslist])
Any inspiration on the best way to do this is more than welcome!
Thanks!
María
Solved! Go to Solution.
Hi @Anonymous
Try these 2 custom Columns
First add a column for weekday
Date.DayOfWeek([Dateslist],1)+1
Now a column for PreviousWorking Day
let mydate=[Dateslist] in List.Max( Table.SelectRows(AddedCustom,each [Dateslist] < mydate and [DayofWeek] <6)[Dateslist] )
AddedCustom above is reference to previous step
Hi @Anonymous
Try these 2 custom Columns
First add a column for weekday
Date.DayOfWeek([Dateslist],1)+1
Now a column for PreviousWorking Day
let mydate=[Dateslist] in List.Max( Table.SelectRows(AddedCustom,each [Dateslist] < mydate and [DayofWeek] <6)[Dateslist] )
AddedCustom above is reference to previous step
@Anonymous
Please see attached excel file's Query Editor for above steps
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
Check out the November 2024 Power BI update to learn about new features.
User | Count |
---|---|
118 | |
96 | |
87 | |
71 | |
62 |
User | Count |
---|---|
138 | |
116 | |
114 | |
99 | |
98 |