Calculate date

wlbamc

Board Regular
Joined
Apr 19, 2016
Messages
99
Office Version
  1. 2016
I am trying to calculate the date in weeks by putting a number in a column

A1 14/8/9
A2 6
A3 calculation of date in 6 weeks time

The number in A2 could be any number of weeks

Thanks
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Assuming that A1 is a valid date entry, try:
Code:
=A1+(A2*7)
If A3 returns an odd looking number, change the format of A3 to a date format (dates are stored in Excel as numbers, specifically the number of days since 1/0/1900).
 
Last edited:
Upvote 0
You are welcome.

The key thing to know is that Excel stores dates as number, and one whole day is represented by "1". So all you need to do is add the number of days to your date to get your new date.
Knowing that there are 7 days in a week, that means just multiplying your weeks by 7 and adding to your original date.
 
Upvote 0

Forum statistics

Threads
1,214,639
Messages
6,120,679
Members
448,977
Latest member
dbonilla0331

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top