How do I set up a spreadsheet with repeating dates which are Frid.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am setting up a spreadsheet which only need consecutive dates which are
Fridays.

Microsoft Excell 2003, SP2
 
Enter the first date in a cell:

A1 = 6/29/2007

Enter this in A2 and copy down as needed:

=A1+7

Biff
 
Eric,

Put the dates of 2 consecutive Fridays in (say) A1 & a1 and select both cells
Hover over the bottom right hand corner of the lower cell until the cursir
turns in a cross and drag down.

Mike
 
If there's a chance that you might delete row 1 then you'd have to hardcode
the date in the formula:

A1:

=DATE(2007,6,29)+(ROWS($1:1)-1)*7

Biff
 
Back
Top