Hi All
T create 7 days in future after a define date is easy (IF(OR([CCNX]=0,[CSGK]=0,[CTWN]=0,[CCNZX2]=0,[CCNZX1]=0,[CCNKB]=0,[CCNZB]=0,[CMYP]=0),WORKDAY(DATE([SHARING DATE]), 7),“”)).
Is is possible to create last 7 workday of every month?
Hi All
T create 7 days in future after a define date is easy (IF(OR([CCNX]=0,[CSGK]=0,[CTWN]=0,[CCNZX2]=0,[CCNZX1]=0,[CCNKB]=0,[CCNZB]=0,[CMYP]=0),WORKDAY(DATE([SHARING DATE]), 7),“”)).
Is is possible to create last 7 workday of every month?
I would try to go backward from the first day of everymonth
So how to do that? Show some expression examples.
WORKDAY(“2024/05/01”, -7)
You can construct the first day of the following month of a given date by using MONTH(),YEAR() and CONCATENATE() and IF(). IF is needed because in December you need to change the year as well as cycle back to Jan.
That working forward. I find ot difficult to do it forward because some month is 30 days, 31 days or 28 days.
What about using this?
EOMONTH(TODAY(), 0) + 1 returns first day of next month
For reference: