I'm looking to have a table with one column of dates, another column of days and the 3rd column calculated by adding the two and excluding the weekends. Say if date Jan 1 falls on a Monday and i need to add 8 days, the resulting 3rd column will be Jan 10 (Wed the following week). I followed the following article but it is a straight days add.
Thanks in advance for your help
Hi @Fulbert Lato ,
You may try the following SQL query:
SELECT *,
FORMATDATE(DATEADD(day,
T1.'Period' +
2 * FLOOR(T1.'Period' / 5) +
CASE
WHEN 'Start Date'::Date->getDay() = 0 THEN 1
WHEN 'Start Date'::Date->getDay() = 6 THEN 2
WHEN ('Start Date'::Date->getDay()) + T1.'Period' % 5 > 5 THEN 2
ELSE 0
END,
T1.'Start Date'))
AS 'End Date'
FROM T1
The query counts the number of Saturdays and Sundays for your period plus checks if the Start Date belongs to the weekend and "extends" the period (i.e. moves the End Date further) for the calculated number of holidays.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am getting NAN.NAN.NAN as output now.. Date format is not working. please can you help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please refer to our support. Attach the Page Storage Format (upper right corner -> menu ... -> View Storage Format), so we'll be able to recreate exactly your source table and the Table Transformer macro settings. If you don't see this option, ask your Confluence administrator to do it for you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.