cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
johnyttan
Frequent Visitor

Calculate the number of days in a month based on a date

Hi guys, let's say I pick a date from Date picker in Power Apps. Based on the date selected, how can I automatically calculate the number of working days (excluding Sunday) in that particular month? 

For example, I pick 11th October 2021, and I get 26 days for the month of October 2021.

I am able to do so using the EOMONTH and NETWORKDAYS.INTL functions in Excel but seems like there isn't a direct function to be used in Power Apps.

1 ACCEPTED SOLUTION

Accepted Solutions
StalinPonnusamy
Super User
Super User

Hi @johnyttan 

 

Fixed the issue.

 

With(
    {
        StartDate: Date(
            Year(StartDates.SelectedDate),
            Month(StartDates.SelectedDate),
            1
        ),
        LastDate: DateAdd(
            DateAdd(
                Date(
                    Year(StartDates.SelectedDate),
                    Month(StartDates.SelectedDate),
                    1
                ),
                1,
                Months
            ),
            -1,
            Days
        )
    },
    If(
        StartDate = LastDate,
        Sum(
            If(
                Weekday(StartDate) = 1,
                0,
                1
            )
        ),
        Sum(
            ForAll(
                Sequence(
                    DateDiff(
                        StartDate,
                        LastDate,
                        Days
                    ) + 1,
                    0,
                    1
                ),
                If(
                    Weekday(
                        DateAdd(
                            StartDate,
                            Value
                        )
                    ) = 1,
                    {DayCount: 0},
                    {DayCount: 1}
                )
            ),
            DayCount
        )
    )
)

 

View solution in original post

11 REPLIES 11
StalinPonnusamy
Super User
Super User

Hi @johnyttan 

 

  • StartDates is the Date Picker (In this Example)
  • The system will not count Sunday
  • Set the Text property of Label Control to

 

With(
    {
        LastDate: DateAdd(
            DateAdd(
                Date(
                    Year(Now()),
                    Month(Now()),
                    1
                ),
                1,
                Months
            ),
            -1,
            Days
        )
    },
    If(
        StartDates.SelectedDate = LastDate,
        Sum(
            If(
                Weekday(StartDates.SelectedDate) = 1,
                0,
                1
            )
        ),
        Sum(
            ForAll(
                Sequence(
                    DateDiff(
                        StartDates.SelectedDate,
                        LastDate,
                        Days
                    ),
                    0,
                    1
                ),
                If(
                    Weekday(
                        DateAdd(
                            StartDates.SelectedDate,
                            Value
                        )
                    ) = 1,
                    {DayCount: 0},
                    {DayCount: 1}
                )
            ),
            DayCount
        )
    )
)

 

 

 

Hi @StalinPonnusamy , thanks for replying.

I've copied your functions and replaced StartDates with DatePicker but the outcome shows the remaining of days towards the end of the month, and it includes Sunday.

For example, I pick 26th October 2021 it returns 5 and when I pick 27th October 2021 it returns 4. 

What I would like to achieve is that whichever date that I pick in October 2021, it will return 26 days (exclude Sundays).

StalinPonnusamy
Super User
Super User

Hi @johnyttan 

 

With(
    {
        StartDate: Date(
            Year(StartDates.SelectedDate),
            Month(StartDates.SelectedDate),
            1
        ),
        LastDate: DateAdd(
            DateAdd(
                Date(
                    Year(StartDates.SelectedDate),
                    Month(StartDates.SelectedDate),
                    1
                ),
                1,
                Months
            ),
            -1,
            Days
        )
    },
    If(
        StartDate = LastDate,
        Sum(
            If(
                Weekday(StartDate) = 1,
                0,
                1
            )
        ),
        Sum(
            ForAll(
                Sequence(
                    DateDiff(
                        StartDate,
                        LastDate,
                        Days
                    ),
                    0,
                    1
                ),
                If(
                    Weekday(
                        DateAdd(
                            StartDate,
                            Value
                        )
                    ) = 1,
                    {DayCount: 0},
                    {DayCount: 1}
                )
            ),
            DayCount
        )
    )
)
RandyHayes
Super User
Super User

@johnyttan 

You can create your own function using a component in your app if you find you need to do these calculations often.

Also, I would advise a formula more conducive to how PowerApps is designed rather than a programmatic design.

 

Here are the steps:

1) Create a new Component in your app.  Name it what you want (I will call it cmp_Functions)

2) Make sure you have the  Enhanced component properties feature turned on in the settings.

3) In your Component, create a new custom property.

    a) Call it DaysOfMonth

    b) Set the Property Type to Output

    c) Set the Data type to Number

    d) Create a new parameter.  Call it MonthDate and set the Data Type to Date and time, also set the parameter to Required. Then save the parameter.

    e) Create another new parameter.  Call it WorkDays and set the Data Type to Table. Do not make it required.  Save the parameter.

    f) Then Save the property.

4) In the property chooser in the formula bar, select the WorkDays property/parameter and set the formula to  [0,1,2,3,4,5,6]  (this will be all days of the week - the default)

5) Select the DaysInMonth property and change the formula to: 

With({_monthStart: Date(Year(MonthDate), Month(MonthDate), 1)},
    CountRows(
        Filter(
            ForAll(
                Sequence(DateDiff(_monthStart, DateAdd(_monthStart, 1, Months))-1, 0),
                Weekday(DateAdd(_monthStart, Value, Days), StartOfWeek.MondayZero)
            ),
            Value in WorkDays
        )
    )
)

 

And you are done with the Component.

 

Now, insert the component in your app screen.  At this point you can use the component function any place in your app.

 

For example, if you want to see the total number of days in a selected month, then set a label text property to:

   cmp_Functions.DaysInMonth(yourDatePicker.SelectedDate)

This will show the total number of days in the month.

To show the total number of days in a month and exclude Sundays, then set your Text property formula to:

   cmp_Functions.DaysInMonth(yourDatePicker.SelectedDate, [0,1,2,3,4,5])

Excluding Sat and Sun, then the formula is:

   cmp_Functions.DaysInMonth(yourDatePicker.SelectedDate, [0,1,2,3,4])

 

Note, the weekdays are set to Monday as 0 in the main formula.  So, Monday is 0 and the days count up from that.

 

I hope this is helpful for you.

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

@StalinPonnusamy 

I've tested the formula across a few months and only October 2021 gives the correct output. The rest of the months have 1 day lesser than the actual days, as shown in the table below. Is this due to the Datediff function when the last date substracts the first date of the month? For example when 31st - 1st it gives 30 days instead of 31 days in a month.

  Actual Days
(Exclude Sunday)
Calculated Days
2021June2625
2021July2726
2021August2625
2021September2625
2021October2626
2021November2625
2021December2726
2022January2625
2022February2423
2022March2726
2022April2625
2022May2625
2022June2625

 

Hi @RandyHayes , thanks for replying with a different approach. However I noticed there's this same issue:

 

I've tested the formula across a few months and only October 2021 gives the correct output. The rest of the months have 1 day lesser than the actual days, as shown in the table below. Is this due to the Datediff function when the last date substracts the first date of the month? For example when 31st - 1st it gives 30 days instead of 31 days in a month. But if this is the case why does only October 2021 give the correct output?

  Actual Days
(Exclude Sunday)
Calculated Days
2021June2625
2021July2726
2021August2625
2021September2625
2021October2626
2021November2625
2021December2726
2022January2625
2022February2423
2022March2726
2022April2625
2022May2625
2022June2625

 

StalinPonnusamy
Super User
Super User

Hi @johnyttan 

 

Fixed the issue.

 

With(
    {
        StartDate: Date(
            Year(StartDates.SelectedDate),
            Month(StartDates.SelectedDate),
            1
        ),
        LastDate: DateAdd(
            DateAdd(
                Date(
                    Year(StartDates.SelectedDate),
                    Month(StartDates.SelectedDate),
                    1
                ),
                1,
                Months
            ),
            -1,
            Days
        )
    },
    If(
        StartDate = LastDate,
        Sum(
            If(
                Weekday(StartDate) = 1,
                0,
                1
            )
        ),
        Sum(
            ForAll(
                Sequence(
                    DateDiff(
                        StartDate,
                        LastDate,
                        Days
                    ) + 1,
                    0,
                    1
                ),
                If(
                    Weekday(
                        DateAdd(
                            StartDate,
                            Value
                        )
                    ) = 1,
                    {DayCount: 0},
                    {DayCount: 1}
                )
            ),
            DayCount
        )
    )
)

 

@johnyttan 

It appears that the numbers are correct.  October has 31 days and 5 Sundays - that makes 26.  November has 30 days and 4 Sundays - that makes 26.  December has 31 days and 4 Sundays - that makes 27.

So the formula is correct from what I see for calculating days for the month minus and days you want excluded (Sunday in this case).

 

What I don't understand is what your calculated days column is...what are you doing there?

_____________________________________________________________________________________
Digging it? - Click on the Thumbs Up below. Solved your problem? - Click on Accept as Solution below. Others seeking the same answers will be happy you did.
NOTE: My normal response times will be Mon to Fri from 1 PM to 10 PM UTC (and lots of other times too!)
Check out my PowerApps Videos too! And, follow me on Twitter @RandyHayes

Really want to show your appreciation? Buy Me A Cup Of Coffee!

@RandyHayes 

The Actual Days are the ones that I count manually from calendar, hence the correct ones. 

The Calculated Days are the output from the formula that you posted. Generally 1 day lesser than the correct number for all months except for October 2021. 

Helpful resources

Announcements
Power Apps News & Annoucements carousel

Power Apps News & Announcements

Keep up to date with current events and community announcements in the Power Apps community.

Community Call Conversations

Introducing the Community Calls Conversations

A great place where you can stay up to date with community calls and interact with the speakers.

Power Apps Community Blog Carousel

Power Apps Community Blog

Check out the latest Community Blog from the community!

Top Solution Authors
Top Kudoed Authors
Users online (2,449)