Formula request...

Matty

Well-known Member
Joined
Feb 17, 2007
Messages
3,717
Hello All,

Let's say Cell A1 has a date of 31/12/2007 in it. I want formula that will populate Cell C1 with the same date, but when copied down to Cell C2, it will show the date plus 7 days (i.e. 07/01/2008), and when copied down to Cell C3, plus another 7 days (i.e. 14/01/2008) and so on...

I know I can do something like this, where C1 is simply =B1 and is C2 =C1+7, then copied down, but I ideally want a formula that is the same from C1 all the way down.

Any suggestions most welcome.

Matty
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.

dafan

Well-known Member
Joined
May 6, 2008
Messages
692
This goes in C1:
Code:
=B1+(ROW(B1)-1)*7

You'll have to change the 1 to whatever if you're gonna start from later rows.
 
Upvote 0

Forum statistics

Threads
1,190,781
Messages
5,982,867
Members
439,802
Latest member
Teiho

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
Top