Forum Discussion

bugs84's avatar
bugs84
Frequent Visitor
8 years ago
Solved

Calc Column with next working day

Hello everyone, I need to find a way to a dax formula for calculated column in a Calendar table which computes the "next working day" in the same table. Basically i need to get the minimum DATE val...
  • Zubair_Muhammad's avatar
    8 years ago

    HI bugs84

     

    Hopefully this shall do the job

     

    ThisOrNextWorkingDay =
    VAR NextWorkingDay =
        MINX (
            FILTER (
                TableName,
                TableName[Day] > EARLIER ( TableName[Day] )
                    && TableName[IsWorkingDay] = "Y"
            ),
            TableName[Day]
        )
    RETURN
        IF ( TableName[IsWorkingDay] = "N", NextWorkingDay, TableName[Day] )