Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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"))
Solved! Go to Solution.
@ThusiHettigama Try using a VAR then.
VAR __Day = DAY(UTCTODAY()-1)
RETURN
COUNTROWS(...)
@ThusiHettigama Maybe try UTCTODAY instead of TODAY?
UTCTODAY function (DAX) - DAX | Microsoft Docs
Greg, Thanks for suggesting a solution for my issue. However after using UTCTODAY function, the issue is still occuring
@ThusiHettigama Hmm, try placing a simple measure like Measure = TODAY() into a Card visualization and see if you get a different value based upon the Desktop or the Service. Wondering if you need to do some kind of TZ conversion.
Measure = DAY(UTCTODAY()-1) is working in the Desktop version and the Service. However when I add COUNTROWS to calculate number of working days from first day of the current month to DAY(UTCTODAY()-1) it's breaking in the Service (published version)
@ThusiHettigama Try using a VAR then.
VAR __Day = DAY(UTCTODAY()-1)
RETURN
COUNTROWS(...)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
14 | |
11 | |
8 | |
8 | |
8 |
User | Count |
---|---|
22 | |
13 | |
11 | |
10 | |
10 |