How to add and subtract dates, days, weeks, months and years in Excel
In this tutorial, you will find a variety of useful formulas to add and subtract dates in Excel, such as subtracting two dates, adding days, weeks, months and years to a date, and more.
If you have been following our tutorials to working with dates in Excel, you already know an array of formulas to calculate different time units such as days, weeks, months and years.
When analyzing the date information in your worksheets, you are likely to perform some arithmetic operations with those dates too. This tutorial explains a few formulas for adding and subtracting dates in Excel that you may find useful.
How to subtract dates in Excel
Supposing you have two dates in cells A2 and B2, and now you want to subtract one date from the other to know how many days are between these dates. As is often the case in Excel, the same result can be achieved in several ways.
Example 1. Subtract one date from the other directly
As you probably know, Microsoft Excel stores each date as a unique serial numbers beginning with 1 that represents January 1, 1900. So, you are actually subtracting two numbers, and an ordinary arithmetic operation works without a hitch:
=B2-A2
Example 2. Subtract dates using Excel DATEDIF function
If the above formula looks too plain, you can achieve the same result in a guru-like way by using Excel's DATEDIF function:
=DATEDIF(A2, B2, "d")
The following screenshot demonstrates that both calculations return identical results, except for row 4 where the DATEDIF function returns the #NUM error. Let's figure out why that happens.
When you subtract a more recent date (6-May-2015) from an earlier date (1-May-2015), the subtraction operation returns a negative number (-5) exactly as it should. The syntax of the Excel DATEDIF function, however, does not allow the start date to be greater than the end date and therefore it returns an error.
Example 3. Subtract a date from the current date
To subtract a date from today's date, you can employ either of the above formulas. Just use the TODAY() function instead of date 1:
=TODAY()-A2
or
=DATEDIF(A2,TODAY(), "d")
Like in the previous example, both formulas work fine when today's date is greater than the date you are subtracting from it, otherwise DATEDIF fails:
Example 4. Subtracting dates with Excel DATE function
If you prefer to supply the dates directly in the formula, then enter each date using the DATE(year, month, day) function and then subtract one date from the other.
For instance, the following formula subtracts 15-May-2015 from 20-May-2015 and returns the difference of 5 days:
=DATE(2015, 5, 20) - DATE(2015, 5, 15)
Wrapping up, when it comes to subtracting dates in Excel and you want to find out how many days are between two dates, it makes sense to go with the easiest and most obvious option - simply subtract one date directly from another.
If you are looking to count the number of months or years between two dates, then the DATEDIF function is the only possible solution and you will find a few formula examples in the next article that will cover this function in full details.
Now that you know how to subtract two dates, let's see how you can add or subtract days, months, or years to a given date. There are a number of Excel functions suitable for this purpose, and which one you use depends on which unit you want to add or subtract.
How to subtract or add days to date in Excel
If you have a date in some cell or a list of dates in a column, you can add or subtract a certain number of days to those dates using a corresponding arithmetic operation.
Example 1. Adding days to a date in Excel
The general formula to add a specified number of days to a date in as follows:
The date can be entered in several ways:
- As a cell reference, e.g.
=A2 + 10
- Using the DATE(year, month, day) function, e.g.
=DATE(2015, 5, 6) + 10
- As a result of another function. For example, to add a given number of days to the current date, use the TODAY() function:
=TODAY()+10
The following screenshot demonstrates the above formulas in action. The current date at the moment of writing was 6 May, 2015:
Example 2. Subtracting days from a date in Excel
To subtract a given number of days from a certain date, you perform a usual arithmetic operation again. The only difference from the previous example is that you type the minus sign instead of plus :)
Here are a few formula examples:
=A2-10
=DATE(2015, 5, 6)-10
=TODAY()-10
How to add or subtract weeks to date
In case you want to add or subtract whole weeks to a certain date, you can use the same formulas as for adding / subtracting days, and simply multiply the number of weeks by 7:
Adding weeks to a date in Excel:
For example, you add 3 weeks to the date in A2, use the following formula: =A2+3*7
.
Subtracting weeks from date in Excel:
To subtract 2 weeks from today's date, you write =TODAY()-2*7
.
How to add / subtract months to date in Excel
If you want to add or subtract a certain number of whole months to a date, you can employ either the DATE or EDATE function, as demonstrated below.
Example 1. Add months to a date with Excel DATE function
Taking a list of dates in column A for example, type the number of dates you want to add (positive number) or subtract (negative number) in some cell, say C2.
Enter the following formula in cell B2 and then drag the corner of the cell all the way down to copy the formula to other cells:
=DATE(YEAR(A2), MONTH(A2) + $C$2, DAY(A2))
Now, let's see what the function is actually doing. The logic behind the formula is obvious and straightforward. The DATE(year, month, day) function takes the following arguments:
- the year of the date in cell A2;
- the month of the date in A2 + the number of months you specified in cell C2, and
- the day of the date in A2.
Yep, it's that simple :) If you type a negative number in C2, the formula will subtract months instead of adding them:
Naturally, nothing prevents you from typing the minus sign directly in the formula to subtract months from a date:
=DATE(YEAR(A2), MONTH(A2) - $C$2, DAY(A2))
And of course, you can type the number of month to add or subtract in the formula instead of referring to a cell:
=DATE(YEAR(date), MONTH(date) + N months, DAY(date))
The real formulas could look similar to these:
- Add months to date:
=DATE(YEAR(A2), MONTH(A2) + 2, DAY(A2))
- Subtract months from date:
=DATE(YEAR(A2), MONTH(A2) - 2, DAY(A2))
Example 2. Add or subtract months to a date with Excel EDATE
Microsoft Excel provides a special function that returns a date that is a specified number of months before or after the start date - the EDATE function. It is available in modern versions of Excel 2007, 2010, 2013 and upcoming Excel 2016.
In your EDATE(start_date, months)
formulas, you supply the following 2 arguments:
- Start_date - the start date from which to count the number of months.
- Months - the number of months to add (a positive value) or subtract (a negative value).
The following formula used on our column of dates yields exactly the same results as the DATE function in the previous example:
When using the EDATE function, you can also specify the start date and the number of month to add / subtract directly in the formula. Dates should be entered by using the DATE function or as results of other formulas. For example:
- To add months in Excel:
=EDATE(DATE(2015,5,7), 10)
The formula adds 10 months to 7-May-2015.
- To subtract months in Excel:
=EDATE(TODAY(), -10)
The formula subtracts 10 months from today's date.
How to subtract or add years to date in Excel
Adding years to a date in Excel is done similarly to adding months. You use the DATE(year, month, day) function again, but this time you specify how many years you want to add:
In your Excel worksheet, the formulas may look as follows:
- To add years to a date in Excel:
=DATE(YEAR(A2) + 5, MONTH(A2), DAY(A2))
The formula adds 5 years to the date in cell A2.
- To subtract years from a date in Excel:
=DATE(YEAR(A2) - 5, MONTH(A2), DAY(A2))
The formula subtracts 5 years from the date in cell A2.
If you type the number of year to add (positive number) or subtract (negative number) in some cell and then refer to that cell in the DATE function, you will get a universal formula:
Add / subtract days, months and years to date
If you carefully observed the two previous examples, I think you have already guessed how to add or subtract a combination of years, months and days to a date in a single formula. Yep, using the good old DATE function :)
To add years, months, days:
To subtract years, months, days:
For example, the following formula adds 2 years, 3 months and subtracts 15 days from a date in cell A2:
=DATE(YEAR(A2) + 2, MONTH(A2) + 3, DAY(A2) - 15)
Applied to our column of dates, the formula takes the following shape:
=DATE(YEAR(A2) + $C$2, MONTH(A2) + $D$2, DAY(A2) + $E$2)
How to add and subtract times in Excel
In Microsoft Excel, you can add or subtract times using the TIME function. It lets you operate on time unites (hours, minutes and seconds) exactly in the same way as you handle years, months and days with the DATE function.
To add time in Excel:
To subtract time in Excel:
Where A2 contains the time value you want to change.
For example, to add 2 hours, 30 minutes and 15 seconds to the time in cell A2, you can use the following formula:
=A2 + TIME(2, 30, 15)
If you want to add and subtract time unites within one formula, just add the minus sign to the corresponding values:
=A2 + TIME(2, 30, -15)
The above formula adds 2 hours and 30 minutes to the time in cell A2 and subtracts 15 seconds.
Alternatively, you can enter the time unites you want to changes in some cells, and refer to those cells in your formula:
=A2 + TIME($C$2, $D$2, $E$2)
If the original cells contain both date and time, the above formula works perfectly too:
Date & Time Formula Wizard - quick way to add and subtract dates in Excel
Now that you know a bunch of different formulas to calculate dates in Excel, wouldn't you want to have just one that can do all this? Of course, such a formula can never exist. However, there exists the Date & Time Wizard that can build any formula for you on the fly, provided that you have our Ultimate Suite installed in your Excel. Here's how:
- Select the cell in which you want to insert the formula.
- Head to the Ablebits Tools tab, and click the Date & Time Wizard button:
- The Date & Time Wizard dialog window shows up. Depending on whether you want to add or subtract dates, switch to the corresponding tab, supply data for the formula arguments, and click the Insert Formula button.
As an example, let's add a few months to the date in cell A2. For this, you go to the Add tab, type A2 in the Enter a date box (or click in the box and select the cell on the sheet), and type the number of months to add in the Month box.
The wizard makes a formula and shows its preview in the cell. It also shows the calculated date under Formula result:
If you are satisfied with the result, click the Insert formula button. Once the formula is added, you can copy it to as many cells as necessary:
That was quite a simple formula, wasn't it? Let's give the wizard something more challenging to work on. For example, let us subtract some years, months, weeks and days from the date in A2. To have it done, switch to the Subtract tab and type the numbers in the corresponding boxes. Or you can enter the units in separate cells and supply references to those cells, as shown in the screenshot below:
Clicking the Insert formula button inputs the following formula in A2:
=DATE(YEAR(A2)-D2,MONTH(A2)-E2,DAY(A2)-G2-F2*7)
If you plan to copy the formula to other cells, you have to change all cell references except A2 to absolute references so that the formula copies correctly (by default, the wizard always uses relative references). To fix the reference, you simply type the $ sign before the row and column coordinates, like this:
=DATE(YEAR(A2)-$D$2,MONTH(A2)-$E$2,DAY(A2)-$G$2-$F$2*7)
And get the following results:
Additionally, you can click the Show time fields link and add or subtract date and time units with one formula.
If you wish to play with the Date & Time Formula Wizard in your own worksheets, you are welcome to download the 14-day trial version of the Ultimate Suite.
This is how you add and subtract dates in Excel. I am hopeful you have learned a couple of useful functions today. I thank you for reading and hope to see you on our blog next week.
251 comments to "How to add and subtract dates, days, weeks, months and years in Excel"
I want to Add 10 working day in every date i want to Input.. please help.. i dont much about excel
Hi, I wanna ask how to create the formula for conditional format over google sheets where I want a date to change its color into red when it has reach 1 year time from that particular date written down in the cell.
for example: todays date is 27/6/22
when i insert date 31/1/22 over the cell, I want the cell to change into red color (box) when it reaches 1 year time (31/1/23).
I will be putting down more dates according the my data, so i can apply to all of them under this conditional rule, and they will change color individually according to their time in 1 year.
Thanks for your help in advance.
Hi!
The following tutorial should help: Google Sheets conditional formatting. If something is still unclear, ask a question in the comments to this article.
Greetings,
I need to create an date-alert that flags equipment for maintenance.
(Ex: Last service date was 4/15/2021. Next service date is 4/15/2022. I want a cell to change colors when the equipment is within 2 weeks of the next service date.)
Any ideas would be treasured!
JP
Hello!
The answer to your question can be found in this article: How to conditionally format dates and time in Excel - built-in rules and formulas.
I hope I answered your question.
I am trying to write a formula for months in role; however, for month 1 I need it broken down by half or whole, then month 2 as a whole month, and month 3 whole etc. Formula needs to be a living formula to change by date pulled
Hi!
Sorry, but I don't understand your task. Could you describe it in more detail? What result do you want to get? Give an example of input data and expected results.
hi,
for example:
I have a loan (6000), I wand to subtract (500) in the 27th of each month.
automatically by the system date.
thank you
Hi!
Use the DAY function to determine the day of the month.
IF(DAY(D1)=27,A1-500,A1)
I hope it’ll be helpful.
YES, Good idea but,
when:
A1=6000
B1= the formula
D1= today()
and I used this formula in B1
=IF(DAY(D1)=27,A1-500,A1)
would it continue to subtract every month? because if it false it will put A1 value after the 27th
Hi!
The formula I sent to you was created based on the description you provided in your first request. I can't guess what result you want on the 28th and beyond.
Hello,
If I have a date range, for example, 5/5/2015 - 4/30/2020 and I'd like to calculate the number of months within that range, but since the range begins on 5/5/2015 and not 5/1/2015, I would like the result to include one decimal point to represent May.
Hello!
Use the DATEDIF function to count the number of full months between dates. If I understand your task correctly, try the following formula:
=DATEDIF(A1,B1,"M")+(EOMONTH(A1,0)-A1)/30
IF i have one sheet with all users with the work date in one cell and hours in other cell and i want to present summary of the working hours spend by each user within the period by days using with formulas and not PIVOT table how to do this?? Can you help me?
Hello!
To sum values by conditions, use the SUMIFS function. Here is the article that may be helpful to you: Sum if between two dates and another criteria.
=SUMIFS(C1:C20,A1:A20,"John",B1:B20,">01-01-21",B1:B20,"<31-01-21")
This should solve your task.
Thank you a lot! Its works.
I have another issue if you can help me.
I have 2 sheets, one sheet have data for example the id, the user name, dates, hours, issues etc, and i want to the second sheet to identify with id which has issue and on which date.
can you help me with this please?
Thanks in advanced
Hello!
If you want to get a list of IDs with dates, then you need to use the FILTER function. You can find examples and instructions in this article.
I hope it’ll be helpful. If something is still unclear, please feel free to ask.
Very nice its =filter(filter(..)
Thank you ;)
Hello,
I am trying to figure out the formula that calculates vacation time daily. In my excel spreadsheet, I have a column labeled 'Hours Taken', and I am trying to put a formula for each employee that calculates the hours taken each day if that makes sense?
Thanks
Hi!
The information you provided is not enough to understand your case and give you any advice, sorry. Please describe your problem in more detail. Include an example of the source data and the result you want to get.
Hi
I am trying to calculate the day and time difference between a start date and time and a start finish date and time for eg, start date is 12 jan 2022 15:00 and finish time is 19 January 2022 06:00.
However I can't seem to get the proper cell format to reflect day and hours in my formula cell. or get the correction function for formula to calculate and say the diff is 6 days 15 hours.
please help
Hello!
Find cell difference and use custom date and time format.
For example -
dd "d." hh "h." mm "min."
This should solve your task.
How to add the hours and old Years “Should I try total first then Add then Count the months to add for the total amount for the amount “ Would help me out better now “ to get more pd more for the customer “
Hi!
What do you want to calculate exactly? Your question is not entirely clear, please specify.
Sir,
Is there any possibility for subtracting /adding academic years..
For Example.
In A1 value is given as 2010-2011
If there any formula to get 2011-2012 or 2009-2010.
Thanks in Advance
Hello!
Your values are written as text. Consequently, you must use the LEFT and RIGHT text functions.
=(LEFT(A1,4)+1)&"-"&RIGHT(A1,4)+1
How to calculate 3 years back date next month 1st date.
For example if date is 25/12/2021, 02/12/2021 if any date in month of Dec 2021 then date is 01/01/2019
And any dates in month Jan 2022 then it's 02/01/2019
Is there an easy way to calculate the 3 years back next month 1st date.
Please help me.
Hi!
You may read how to subtract 3 years of the date in this article above.
To determine the last day of the month, use the EOMONTH function.
Then add 1 day.
=EOMONTH(DATE(YEAR(A1)-3,MONTH(A1),DAY(A1)),0)+1
I have one task need to complete it within 5 days.
If task create date is 13/12/2021 (Monday)then we will complete it 17/12/2021 (Friday) or before.
But problem is if task create date is 14/12/2021(Tuesday) & 15/12/2011(Wednesday) then deadline is 18th and 19th Dec Weekend.
If deadline is on weekends then we will complete this task on Friday.
How can I add excel formula on this?
Could you help me on this
Hello!
Use the WEEKDAY function to determine the day of the week:
=IF(WEEKDAY(A1+4,2)>5,A1+(5-WEEKDAY(A1,2)),A1+4)
how to deduct 27/04/2020 14.00 hrs ( dd.mm.yy and 24 hours format) from 01/05/2020 10.00 hrs
Hello!
You can find the examples and detailed instructions here: How to calculate time in Excel - time difference, adding / subtracting times.
You can find the difference between the cells, and then apply a custom date and time format to the result: d "days" h:mm:ss
I hope my advice will help you solve your task.
I wants to set the date with condition:
Examples:
for 1st to 15th I want set it’s to 2nd next month.and for the date between 16 to the end of months set it to 2nd next next month.
What is formula for that condition?
Hi!
Unfortunately, your conditions are not clear. Moreover, they are the same in both cases.
I'm working in Google Sheets, so this may not have the capacity to do this. Let's say I have a date in cell A1 as 1/11/2021, I need Cell B2 to show a date that is 6 days from the date in cell A1. I know how to enter the formula, that's easy as =A1+6 and returns a date of 7/11/2021. If the cell in A1 is left blank, the formula in cell B2 shows up as 05/01/1900. Is there a way to have the formula in cell B2 remain blank until there is something entered in Cell A1? I can do a work around and make the text white in cell B2 so it doesn't show and then make it black to reveal the dates when I have entered what needs to be entered into Cell A1. That's probably a very clumsy way of doing it though.
So my question put simply is how do you enter a date formula into the cell and have nothing showing until has data to return as result from in the cell before it?
Thank you for considering my question.
Hello!
To do conditional calculations, use the IF function:
=IF(A1<>"",A1+6,"")
Conditions my last date like 8/12/2021 after 12 days date than 11 days date than 8 days date but without friday. Whice formula use for this. Pls replay.
Hello!
To add 8 days to the date excluding Friday, use the WORKDAY.INTL function:
=WORKDAY.INTL(D1,8,"0000100")
please how do you get decades from a large dataset and sort them in order?
Hi!
Explain what it means "get decades". Give an example of the expected result.
Hi, i need to sum days to a date but just in workdays.
Hello!
We have a special tutorial on this. Please see: Calculating weekdays in Excel.
hi, i need to substract dates formula of machine break down hours
i.e : machine breakdown started
A1 : 1/1/2021 B1: 6:00 am
job done C1:15/1/2021 D1: 4:00 PM
with minimum 10 hours each day = 150 hours(15 days)
can some one help me out on this formula..
Hi!
Your description is not very clear to me. I recommend that you study the article on how to calculate date differences using the DATEDIF function.
Hi
Both of below are not working, please help
=DATEDIF(B2, TODAY(), "d")
=TODAY()-B2
Hello!
Is cell B2 written date or text as a date? What error are you getting?
Hi. I'm getting a #value! error message when I input this formula =DATE(YEAR(L25) - 1, MONTH(L25), DAY(L25)).
L25=Aug 19 2022
I'm simply trying to reduce the new date by a year. Why am I getting the error message?
Thanks
Hello!
Cell L25 contains the date as text. This text needs to be converted to date as described in this article
Is there any formula to add 5 years 7 months 10 days with 10 years 8 months 25 days in excel. Please help me
Hi!
I kindly ask you to have a closer look at the article above. It contains answers to your question.
Thank You!
hi,
need help for cell D1
how do I add the following CUMLATIVELY by formula?
A B C D
1 from to difference cumulative
2 01jan2017 24mar2017 0 y 2m 23d(used datif) 0 y 2m 23d
3 24jul2017 12nov2017 0y 3m 19d(used datif) 0y 6m 12d (how to add to d2)
I have specific date in one cell, from there i need to go 4 weeks forward. Use =Date function i have just calculated 4 weeks. but my question is, if those four weeks falls in december month in between , i want to add 7 (1week)more days extra due to shutdown holidays... how to enter this scenario in exisiting date range formula?
existing formula - =DATE(YEAR(D39),MONTH(D39),DAY(D39)+28)
my commit date D39 - 30/11/2021
I got 28th dec as output... but
my expected date - 4th jan 2022
Hello!
Please check out the following article on our blog, it’ll be sure to help you with your task: WORKDAY.INTL - calculate workdays with custom weekends
I hope I answered your question. If you have any other questions, please don’t hesitate to ask.
I HAVE SMALL QUERIES IN EXCEL, MY MANAGER GIVES ONE INVOICE DATE 03-MAR-2021 IN THE DATE OF INVOICE TO 20 DAYS BEFORE UPLOAD THE DOCUMENT. NOW HOW TO USE THE FORMULA
Hi,
is there a formula where by I subtract dates from a set date (meeting date) and can establish which date I need to request reports showing only days that are monday-friday?
I.e.meeting date is 10/04/2020 and i need to request the reports 3 weeks before that date I would normally use 10/4/21 cell reference - 21 but this often gives me weekends or holidays
please help
Hello!
If you have a five-day work week, then you can use the formula
=WORKDAY.INTL(A1,-15,1)
You can learn more about calculating weekdays in Excel in this article on our blog.
Hi Team ,
Can you please explain , how to calculate the year
Example :-3.5 to 4.11= 8,4
Can you pls share the formula
I have a problem! I have a cell that returns a date as a result of a formula in that cell (say, A1). I now want to create a future date (1 year ahead) in another cell (say A2), based on the date in cell A1. I know the formula needed to return a date a year ahead, but because the date I am basing it on (in cell A1) is the result of a formula, it is returning me a date of 31/12/1900 in cell A2. How can I get Excel to realise that that A1 is a date without having to go through copying and pasting values in a different cell?
I am desperate - please help :)
Hello!
Without seeing your data it is difficult to give you any advice. I am assuming the date in cell A1 is written as text. What formula did you get this value with? For me to be able to help you better, please describe your task in more detail.
Is there a way to add two cells containing the text 0 Years 5 Months 1 Days to 1 Years 6 Months 8 Days?
Hello!
I’m sorry but your task is not entirely clear to me. Could you please describe it in more detail? Give an example of the source data. How do you want to add these cells? What result do you want to get? Thank you!
I have a start date (which passed years ago) and a end date but need to work out how many months are left from today ?
Hello Lynne!
Use the DATEDIF function to calculate the difference between dates in months. For detailed instructions, see here.
Why are there so many errors on this page?
> date) + N years, MONTH(date), DAY(date))
Where's the beginning of that line????
Fixed.
DATE(YEAR(date) + N years, MONTH(date), DAY(date))
Thanks Svetlana. You are great!
Great work!
Thank you
Dear Team
How to add 60 years to the birthday in separate column.
ex: 2 may 1983 and next column should add 60 years and should show as 2 may 2043
hello,
I is there any formula calculate date difference in Quarter and half yearly without rest of decimal.
hello,
I is there any formula calculate date difference in Quarter and half yearly without rest of decimal. I tried as follows
datedif(date1,date2,"m")/3 and datedif(date1,date2,"m")/6 but result show me decimal.please give me a solution.
Hello,
I am creating a calculation sheet, and want to change the date automatically when the system date = enter date then entered date should be increase by 1 year automatically. please help to solve this problem. i have tried out but not happening.
Hello, I hope you can help. I have search a number of places & cannot find the resolution. What is excel formula for this scenario?
If I have a date such as: 2/7/2020
If I would like to calculate a range of dates, 90 day from the date above with a range of dates plus 7 days & minus 7 days, I want to set up a spreadsheet for patient follow-ups that tend to have a window of time such as mentioned.
Thank you very much,
Tommy
Hello,
I am trying to figure this out and need some help.
Here is planning challenge. I run operations all year (Oct 1st - Sept 31st) minus Nov, Dec, and Aug. Based on the current day I need to subtract the number of days in those operation day. For example, if today was Dec 12th, I will need to subtract 42 days (Nov 1st -Dec 12th) from current total 73 days (Oct 1st - Dec 12th). The answer I am looking would be 31 days. So, it would not matter what day of the year it would be , the math would subtract those non working days in Nov, Dec, and Aug. Any help would be greatly appreciated.
I want a formula to compute for future date.
A1- date today 12/12/19
B2- number of dates its on the list example: 23 days on the list today 12/12/2019
C3- fixed value of 120 days
D3- i want to know what date will it be for the 120th day of the name on the list using the 3 variables.
Thank you
Hi,
I want to make formula if employees work more than 5 years he entitlement for 30 days & if less than 5 years entitlement 15 days.
trying to use the following =IF(B2<7/1/2020,"ok","update now").... what i am trying to do is, is the date in b2 is before 7/1/2020 i want it to output "update now" if the date is after 7/1/2020 i want the out put to be "ok"
AC Tanks 6/18/2020 Sentry Insurance update now
Baldwin GCPC 12/31/2019 Ala Homebuilders ok
I have a table of almost 400 entries/rows. I need to subtract one column of dates (x/x/xxxx) from another column of dates (x/x/xxxx) and produce a third column of the results as whole numbers in days. I use the Business Edition of Ablebits. What are the keystrokes/buttons to do this? Thanks so much.
Please which formular do I use to add a counter to a date. for example if on cell A3 is a date 12/09/2019. How do I add a counter to count the number of weeks on another cell B3. If the start date in A3 is 12/09/2019 then if I want to know how many weeks I have spent on the studies on 24/10/2019, then I want cell A8 to show 6 ( the weeks between the two days). Please help!!!!. Thanks
HOW CAN I GIVE THE DATE OF NEXT 2DAYS SUPOOSE MY VALUE 30 SEPT 2019 SO I WANT NEXT COLLOMN AUTOMATIC ADD 2 OCT 2019 SO HOW I GIVE THE VALUE PLEASE TELL ME RESPONCE
Fantastically helpful webpage!
Hi team
Please help, i have a spreadsheet with accumulating employee leave days. i want to a formula to automatically add 2 days to the accumulating leave column every end of each month.
anyone please help!!
Thank you
Hellow ,
Kindly I need help , I have finsied date and pendings days for example :
finishing date 02/08/2018 and pendings date -367 my question how can I find start date?
Junuanry 26 1976
July 29 2019
I am trying to calculate an employees years, months and days employed. They have 2 separate dates of employment that I want to add together.
START DATE END DATE
8/15/1999 7/1/2016 16YEARS 10MONTHS 16DAYS
11/6/2017 present 1YEARS 7MONTHS 26DAYS
Im trying to set up an excel formula so that if my dates are less than a year that the data would not be included in the sum.
Ex today is june 14
My data is:
Date
1/1/18. 3
2/5/18. 4
3/4/19. 6
Total would be 6 (formula here)
My spreadsheet calculates a patient visit schedule from a specific date I enter. I then import these dates into my outlook calendar. How do I create a formula for a specific date plus 14 days under "general" formatting - not the date formatting? The data with the "date formatting cells" do not import in outlook or google calendar.
HI,
I would like to get the difference in the dates "4/13/2019" and "2/25/2019" so used function "=DAYS("4/13/2019","2/25/2019")", but getting the result like this .."2/16/1900", i was expecting 47, but no matter which function(Tried with today(), simply subtraction) i am using, i am seeing the same result.. can some explain me why so?
Always make sure to check the formatting of the cells. This can be fixed by changing the date format to a number.
Hi all,
I have a spreadsheet that has an issue date, importance rating and then a review date. What i'd like to happen is that if the importance rating is high then the review date needs to be the issue date plus 1 year, and then so on with all the other options but the one i have used isn't working and adding YEAR doesn't seem to be working either....
Here is what i have:
=IF([@Importance]="High",[@[Issue Date]]+1,IF([@Importance]="Medium",[@[Issue Date]]+3,IF([@Importance]="Low",[@[Issue Date]]+5,"N/A")))
Any help would be great!! :)
how I convert number 20 to 1 year 8 months
also 38 to 3 year 2 months
hope you can help..
I need to calculate the total deal cost for deals with a start date and end date and an annual recurring rate. Leap years need to be taken into account. Deals are usually between 12 months and 48 months. I would like to see a result like 3.26 year where all years are calculated as if they are being 365 days. Hope you can help.
I want to subtract two dates like this- Tue Oct 23 21:44:03 BST 2018
How can I do it please?
I would like to calculate number of days from start date to end date, covering all days.
for example; Travelling dates from 1 Mar to 5 Mar = 6 days
what formula does suit to calculate?
Thank you
Is it possible to change the colour of a box when a date is reached ?
This is to keep track of machine servicing, I want to enter a date when the service was done and the box to show green until a year has elapsed when the box would change to red.
Thanks a lot! I was searching a formula to add months in a particular date. I could find the right formula here.
I want to subtract and calculate difference hours these two date
Oct 14, 2018, 2:00 PM - Nov 1, 2018, 2:20 PM
I am looking to have one column have the name of the months, i.e., "January." What I would like in column two is to have column one minus 3 months. So in the example January in column one, column two would show October (January minus three months).
Hi there,
I am setting up my class assignment schedule in excel but I have difficulty to setup a formula that will reduce the date till the deadline is reached. Please help me on this.
Hi there,
I am setting up my class assignment schedule in excel but I have difficulty to setup a formula that will reduce the date till the deadline is reached. Please help me on this.
hi there, how can i make certain words fall automatically under a category.
for example i have spoon, fork, knife, plate, bowl, saucer, i want the first 3 to always specify cutlery in their next column and the last 3 to always specify dishes in their next column any time they are typed the next column should automatically fill the category they belong.
I need to know the no. of days between dates (with 1 days equivalent to 8 hours) and hours between time and combining these 2 to give me the total no. of days and hours in one cell.
Given: 7/18/2018 - 7/20/2018 = no. of days
8:00:00 - 12:00:00 = no. of hours
Result should be in no. of days and hours (in one cell)
Please help.
I need to know the no. of days between dates (with 1 days equivalent to 8 hours) and hours between time and combining these 2 to give me the total no. of days and hours in one cell.
Given: 7/18/2018 - 7/20/2018 = no. of days
8:00:00 - 12:00:00 = no. of hours
Result should be in no. of days and hours (in one cell)
Please help.
I have the following in cells A1 (start date and time) and B1 (finish date and time)
A1: 29/12/2017 11:44
B1: 02/01/2018 08:00
What formula can I use to get the total time from A1 to B1 in HH:mm?
I found this to work though giving decimal values
=DAYS(B1,A1)*24+HOUR(B1-A1)+MINUTE(B1-A1)/60
Hi, I'm looking for a formula to calculate when a payment is due when it's 30 days after month end.
Eg.. Invoice date 15th May,the due date would be 30 days after month end..
So I trust the actual date would be 30th June.. Is there a formula for this.?
Karen:
The formula you're looking for is:
=EOMONTH(A22,1)
Where 5/15/18 is in A22 and is formatted as Date as is the cell containing the formula.
Hello. I have created a spreadsheet to record calculations for when to reorder tablet medication. The spreadsheet opens with Todays date but doesnt automatically look at the last stock count date and reflect actually how many tablets are left in the box......for me to reorder.
I would like the formula for todays date cell to delete the stock count date cell and then delete the quantity of tablets number cell already recorded please.
Thanks
very helpful, didnt find it in excel help, thanks alot
Kindly help me in sorting out this issue I want to calculate number of days between eg.29/11/2017 to 09/11/2017
Just do latest date - earliest date
e.g. Cell A1 contains 29/11/2017, Cell B2 contains 09/11/2017
Do =A1-B2 the result will be the number of days (ensure the result is in 'General' format)
Is there an easy way to calculate the number of month's, weeks, hours & minutes from a date to a date? This will cover leap years & any other variances I haven't already though of?
TIA
What formula should I use for the given scenario:
Date on Cell 2 should be either 16th of the next month or 1st of the 2nd next month.
1st to 15th of the month = 16th of the next month
16th to 31st of the month = 1st of the 2nd next month
For example, date in cell 1 is january 10, 2017, the date on cell 2 should be feb 16, 2017. If the date on cell 1 is january 26, 2017, the date on cell 2 should be march 1, 2017.
Thank you.
I have a formula that needs to be performed on dates every month that are larger than a date I have listed by a number, such as every 8th (8)or 22nd (22), and this is preformed again for each new month. My problem is having excel distinguish between a today() format and my number. Any recommendations?
Hello,
For me to understand the problem better, please send me a small sample workbook with your source data and the result you expect to get to support@ablebits.com. Please don't worry if you have confidential information there, we never disclose the data we get from our customers and delete it as soon as the problem is resolved.
Please also don't forget to include the link to this comment into your email.
I'll look into your task and try to help.
When I tried formula =datedif(Cell2,cell3,"d") it displays result as #value!
Kindly help me in sorting out this issue I want to calculate number of days between eg.18/11/2017 to 1/1/2018
Do you have any formula to increment year of date by some no. like EDATE for month ?
Sangram,
Please have a closer look at this section of the article above.
It contains the example of the formula you need to solve your task.
I have an Excel Spreadsheet that I am using to track success completing multiple tasks by companies. I have built a spreadsheet with a "Date Due" and a "Date Completed" column for each task. I already know the due dates and have populated the same. The dates items are completed are entered when done. I then calculate the difference between the Date Due and the Date Completed. I have built the simple formula of =Sum(D4-E4). I built the spreadsheet and copied the formula to all columns/cells that will eventually be populated. Here is my question, how do I get the cells that include the formula to return a 0 or nil value if the E4 value in the formula above is not populated? This means my work is still in progress and I don't have a "Date Completed" value. I am assuming an IF statement will do it, but I would like some guidance/recommendation . . .
Thanks,
Hello, Joanne,
Please try the following formula:
=IF(ISBLANK(E4),"0",E4)
Hope it will help you.