When there is no dedicated function to get the first day of a given month, you can easily use a workaround to find it. In this Excel tutorial, I’ll show you some really simple formula that you can use to get the first day of a month in Excel based on a given date. So let’s get started!

Get the First Day of the Month Using EOMONTH

EOMONTH Function gives you the last day of the month for a given date (hence called the end-of-month function). But we don’t want the last day of the month – we want the first day. To get the first of the month you need to tweak your EOMONTH formula a little. Suppose you have a data set as shown below where you want to find the first day of the month for each of these given dates in column A.

Note that these dates are in the MM/DD/YYYY format (the date format followed in the US). These may look different in your system based on your regional date setting. Below is the formula to do that:

The above EOMONTH formula uses two arguments:

Start Date: the date from which Excel uses the month value and calculates the first day of the month Months: The number of months before or after the start date. If I use 0, EOMONTH will give me the last day of the given month, and if I use 1, it will give me the last day of the next month.

Since I’ve used -1 as the second argument in the EOMONTH formula, it gives me the last day of the previous month (based on the date in cell A2). And since I want the first day of the month (from the given date), I can simply add 1 to the EOMONTH result. You can also use the same logic if you want the 10th day or any other day of the month. Just add that value instead of 1 in the formula.

Get the First Day of the Month Using DATE/DAY formula

Dates are stored as numbers in Excel, which allows us to easily use it in calculations (such as addition/subtraction). Now, if you want to get the first day of the month from a given date, you just need to use the day value in the date and bring it back to 1. For example, if I have the date as 15th October 2020, to get the first day off this month, I need to subtract 14 days from this date. Now let’s see how to translate this logic into an Excel formula. Suppose I have a data set as shown below where I have the dates in column A and I want to get the first day of the month for each of these dates.

Below is the formula that will do that:

The above formula uses the date in cell A2 (which is stored as a serial number in the back and in Excel) and subtracts the day value of the same date (which is given by the DAY formula). The above formula gives us the last day of the previous month, so 1 is added because we want the first day of the month from the given date.

Get the First Monday of the Month

It’s fairly straightforward to get the first day of the month, it’s likely tricky to get the first Monday of the month (or any other first weekday of the month). While we know that this would be somewhere at the beginning of the month, to get the exact date, we need to find out what day it is on the first day of the month and then use it to get the first Monday. The purpose of this tutorial I will consider Monday to be the first weekday (that you can use the method shown here to find out the first occurrence of any day of the week) Let me take an example of September 2020 where the first day of the month is a Tuesday in the first Monday is on 8 September 2020. Below is the formula that will give me the first Monday in September 2020 Note that I have hardcoded the date using the DATE function. You can also use a cell reference that has a date in this case. So instead of DATE(2020,7,1), you can use the cell reference (such as A2) that has the date. Now let me explain how this formula works! The first part of the formula (which is the EOMONTH formula) gives us the first day of the month for the given date. The second part of the formula uses the WEEKDAY function to analyze this first day of the month. If it is already a Monday, then the entire MOD formula returns 0 and we would be left with the first day itself. But if the first day of the month is not a Monday, then the MOD formula would give us the total number of days that we should add to this date to get the first Monday of the month. For example, for September 2020, the first day of the month is a Tuesday. In this case, the MOD function gives us 6, which when we add to the EOMONTH result gives us 7th September 2020 as the first Monday of the month. In this example, I have shown you how to find the first Monday of any month, but you can use the same formula to find any day. For example, if you want to find the first Saturday of any month you can tweak the formula as shown below: The only change I have made is the second argument of the WEEKDAY formula. So this is how you can use formulas in excel to find out the first day of the month or the first Monday (or any other weekday) of the month. I hope you found this tutorial useful! Other Excel tutorials you may like:

How to Convert Serial Numbers to Dates in Excel How to Add or Subtract Days to a Date in Excel How to Calculate the Number of Days Between Two Dates in Excel Calculate the Number of Months Between Two Dates in Excel How to Remove Time from Date/Timestamp in Excel How to Get Month Name from Date in Excel Get Day Name from Date in Excel How to Autofill Only Weekday Dates in Excel (Formula)