Forum Discussion
Dwisha_S
3 years agoRegular Visitor
Issues with DAX Functions
Hi Community, I have a Sales Dashboard where I am calculating Month to Date Sales Target based on No of fullfillment Days that have passed. I am getting correct results for all months except Marc...
- 3 years ago
This issue has been resolved. I updated the && operator to OR "||".
No.of_Working_Days_LeftInCurrent_Month = COUNTROWS(FILTER(CALENDAR((Now()),EOMONTH ( NOW(), 0 )), WEEKDAY([Date], 2) < 6 || COUNTROWS(FILTER('Date','Date'[Delivery_Days]="Holiday"))))
Dwisha_S
3 years agoRegular Visitor
This issue has been resolved. I updated the && operator to OR "||".
No.of_Working_Days_LeftInCurrent_Month = COUNTROWS(
FILTER(
CALENDAR(
(Now()),
EOMONTH ( NOW(), 0 )
), WEEKDAY([Date], 2) < 6 || COUNTROWS(FILTER('Date','Date'[Delivery_Days]="Holiday")
)
))