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
KillerJ1
Regular Visitor

Variance for Workday Last Month

Hey Everyone,

 

I am trying to get an order count variance based on the working day last month. Here is an example of the data I would like to see. 

Date/Working day/Count/Previous month workday count/difference
08/19/2114105305-200
07/21/2114305205100
06/18/2114205Blank() if no dataBlank() if no data
08/18/2113150450-300
07/20/2113450300150
06/17/2113300Blank() if no dataBlank() if no data

 

I have tried so much and just can't seem to get the data to look like this. If you have a measure to grab the last months working day order count that would be amazing if you can share it. Thats the hardest part for me. Thanks! 

1 REPLY 1
amitchandak
Super User
Super User

@KillerJ1 , You need to have workday column in your date table

 

WorkDay = if(WEEKDAY([Date],2)>=6,0,1)

 

measure =
var _max = maxx(filter(all('Date'), Date[Workday] =1 && eomonth(Date[Date],0) = eomonth(max(Date[Date]),-1) ),[Date])
return
calculate(Sum(Table[Value]), filter(all('Date'), Date[Date] =_max)) - Sum(Table[Value])

 

 

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