Forum Discussion

ThusiHettigama's avatar
ThusiHettigama
Regular Visitor
4 years ago
Solved

Current Month Working days calculation

My objective is to calculate the number of working days up until yesterday for the current month.

The below measure is working in the Desktop version. However, once it is published not calculating in the Web version.

 

dimCalendar is a table in PowerBI. IsCurrentMonth and IsWeekDay are columns in the dimCalendar table.

 

CurrentMonthworkingDays =

CALCULATE (

    COUNTROWS (dimCalendar),

    FILTER (

        dimCalendar,

        dimCalendar[Day] <= DAY ( TODAY ()-1 )

            && dimCalendar[IsCurrentMonth]=1

            && dimCalendar[IsWeekDay]="True"))

6 Replies