Forum Discussion

KillerJ1's avatar
KillerJ1
Regular Visitor
5 years ago

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

  • 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])