So I'm quite new in Alteryx and been moving reports from manual tools (access/Excel) to Alteryx.
Just realized that there is no function in Alteryx to easily calculate x amount of working days from a starting date (e.g. 28th Oct 2016 + 2 days = 1st of October 2016) so decided to write my own one (unless there is one in that case I wasted an hour of my time for this).
Then I found out that I can’t do while loops (Like I said, new in Alteryx), so I managed to do one without a while loop,
The basic of the formula is this:
Start Date + (Floor( ((Daysof Week+DaysToAdd)-1/5)*2) + DaysToAdd = end date
If the Start Date is Sat/Sun then start from previous Friday.
Feel free to use it if you guys think it is useful.