if i enter a date in one cell and then drag the cell it
will want to enter dates sequentially...but there must be
some easy way to enter a different pattern...
help! thanks in advance!
:)
Just paste this formula into a cell then copy the cell across the columns.
=IF(A1="Monday","Tuesday",IF(A1="Tuesday","Wednesday",IF(A1="Wednesday","Thu
rsday",IF(A1="Thursday","Friday",IF(A1="Friday","Saturday",IF(A1="Saturday",
"Sunday",IF(A1="Sunday","Monday","Monday")))))))
John <wilj...@nospam.com> wrote in message
news:055901c31ae1$01e56340$a001...@phx.gbl...
HTH
Jason
Atlanta, GA
>.
>
Mike
>.
>
You can do it with a formula:
Put the first date (a Tue or Thu) in A1. In A2
=A1+IF(WEEKDAY(A1)=3,2,5)
and copy down.
I thought he wanted only Tuesdays and Thursdays. Just adding 2 will give
Tue-Thu-Sat-Mon-Wed-Fri. Maybe I misinterpreted his post...
:)
>.
>