Ever found yourself wanting to track days, weeks, or months in Excel? Whether you're monitoring a project timeline, tracking progress, or simply curious about how many days have passed since a specific date, creating a day counter in Excel is a breeze. Let's dive into how you can do this using simple formulas and functions.

Before we get started, ensure you have Microsoft Excel installed on your computer. This guide uses Excel 2016 and 365, but the principles apply to most recent versions. Now, let's create a day counter step by step.

Understanding the Basics: Today's Date and Current Date Functions
Excel provides two built-in functions to work with dates: TODAY and NOW. The TODAY function returns the current date, while NOW returns the current date and time. For our day counter, we'll focus on TODAY.

To insert the current date using TODAY, simply type the function in a cell and press Enter. For example, if you type "=TODAY()" in cell A1 and press Enter, Excel will display the current date in that cell.
Using TODAY Function to Display Current Date

To display the current date using the TODAY function, follow these steps:
1. Open a new or existing Excel workbook.
2. In the first cell where you want to display the current date (e.g., A1), type "=TODAY()" and press Enter.

Automatically Updating the Current Date
By default, the TODAY function updates every time you open the workbook. However, if you want to manually update the date, you can use the "Calculate Now" option in the Formulas tab or press F9.
To automate this process, you can set the workbook to calculate automatically. Go to the File tab, click Options, then Formulas. Under "Calculation options," select "Automatic" for "Worksheet calculation" and "Automatic" for "Recalculation." Click OK to save your changes.

Calculating Days Between Two Dates
Now that you know how to display the current date, let's calculate the number of days between two dates. This is where our day counter comes to life.




















Excel provides the DATEDIF function to calculate the difference between two dates. However, this function is not available in all Excel versions. If you're using a version that doesn't support DATEDIF, you can use the following workaround with the DAY function.
Using DATEDIF Function (if available)
If your Excel version supports the DATEDIF function, you can calculate the number of days between two dates by entering the following formula:
=DATEDIF(start_date, end_date, "d")
Replace "start_date" and "end_date" with the actual dates in your workbook. For example, if your start date is in cell A1 and end date in cell A2, the formula would be:
=DATEDIF(A1, A2, "d")
Using DAY Function as a Workaround
If your Excel version doesn't support DATEDIF, you can use the DAY function as a workaround. Here's how:
1. In the cell where you want to display the result, type the following formula:
=DAY(end_date) - DAY(start_date)
2. Replace "end_date" and "start_date" with the actual dates in your workbook. For example, if your start date is in cell A1 and end date in cell A2, the formula would be:
=DAY(A2) - DAY(A1)
Creating a Simple Day Counter
Now that you know how to calculate the difference between two dates, let's create a simple day counter. In this example, we'll count the number of days since a specific date (e.g., the start of a project).
For this counter, we'll use the TODAY function to get the current date and subtract the start date using the DAY function workaround.
Setting Up the Day Counter
1. In the first cell where you want to display the day counter (e.g., A1), type the following formula:
=DAY(TODAY()) - DAY(start_date)
2. Replace "start_date" with the actual start date in your workbook. For example, if your start date is in cell A2, the formula would be:
=DAY(TODAY()) - DAY(A2)
Formatting the Day Counter
To make your day counter more readable, you can format the cell as a number with no decimal places. Here's how:
1. Select the cell containing the day counter.
2. Right-click and select "Format Cells" or press Ctrl + 1.
3. In the "Number" tab, select "Number" from the list of categories.
4. In the "Decimal places" field, type "0" and click OK.
And there you have it! You've created a simple yet powerful day counter in Excel. This counter will automatically update every time you open the workbook, keeping you informed about the number of days that have passed since the specified date.
Now that you've mastered the day counter, why not explore other date and time functions in Excel? You might find them useful for tracking deadlines, calculating age, or analyzing historical data. Happy counting!