Forum Discussion

Dwisha_S's avatar
Dwisha_S
Regular Visitor
3 years ago
Solved

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...
  • Dwisha_S's avatar
    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")
        )
    ))