Forum Discussion

rahul_ferns's avatar
rahul_ferns
Icon for Helper II rankHelper II
3 years ago
Solved

Show A Saturday as IsWorkday if Worked

Hi Experts I have a IsWorkday column in my Calendar table which shows days that are working day and excluded holidays (Works perfectly) From time to time, we work on some saturdays and I want to sh...
  • amitchandak's avatar
    3 years ago

    rahul_ferns , Add working Saturday flag and have new column like

     

    Switch( True(),
    'Calendar'[Day of Week] =0, 0,
    not(ISBLANK('Calendar'[Holiday])) , 0,
    'Calendar'[Day of Week]=6 && isblank([Working Saturday]), 0, 1)