Number of working days in a month
Excel uses the formula function NETWORKINGDAYS to calculate the number of working days in a month How would I do this in Anaplan? Link to an input module?
Tagged:
1
Best Answer
-
Hello Jonathan,
Anaplan does not currently have a similar function, but you could use an assumption module to collect the number of working days in a month or to "flag" days as working days and then get a monthly total of working days.
Heather0
Answers
-
Thanks for that,
The module can hold the actual working days in the month, although it will be a tedious task calculate the working days in excel for each contractor and load them on a regular basis. How do others build a contractor based model? Is it likely this will be a feature built in time?0 -
Hi Heather,
Has this feature been added? I see that this thread was from a few years ago.
Thanks,
Lara0 -
Hi Lara,
I don't think there are any changes to the formula addressing working days in a month. You could always use WEEKDAY formula and Holiday mapping (dependent to year and region) to address this.
I have attached a sample screens below in which I used to address number of working days in a month.
Hope that helps.
Thanks,
Leo0 -
Hi,using the weekday formula in addition to a dedicated time management module will make the job :
weekday will allow you to split days monday to sunday, thus having the "usual" working days easely indentified.
a time management module with boolean will allow you to add January 1st, Xmas day and and so on either manually or through formulas by testing dates (01/01, 25/12....) depending on your country.
Kind regards.
Michel.1 -
There's no direct function as NETWORKINGDAYS or anything similar to it but the same can be achieved using the below method.
- Create a module. For Ex: Working Days Filter
- Working Days have a time Scale as Days.
- Line Item: Days, WeekDays, Holiday, Working Week Days, and Worked on Weekdays.
- Days: Format- Date, Formula: START()
- WeekDays: Format-Number, Formula: WEEKDAY(Days)
- Holiday: Format-Boolean, Manual Input
- Working Week Days: NOT (WEEKDAY(Days) = 6 OR WEEKDAY(Days) = 7 OR Holidays)
0