(Msg. 1) Posted: Tue Aug 05, 2008 10:14 pm
Post subject: Fill Mon-Wed-Fri dates? Archived from groups: microsoft>public>excel>worksheet>functions (more info?)
I'm a college instructor and would REALLY like to find a way to automatically
fill the dates for MWF classes or for T-Th classes. So far all I can get
excel to do is either weekdays or every-other day. Any suggestions would be
helpful!
(Msg. 2) Posted: Tue Aug 05, 2008 10:28 pm
Post subject: RE: Fill Mon-Wed-Fri dates? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
down and dirty
A2: 8/4/08 (or some other day that is definitely Mon, Wed, or Fri)
A3: =A2+2*OR(WEEKDAY(A2)=2,WEEKDAY(A2)=4)+3*(WEEKDAY(A2)=6)
Copy A3 down as needed.
or, for Tue / Thu
A2: 8/5/08 (or some other day that is definitely Tue or Thu)
A3: =D2+2*(WEEKDAY(D2)=3)+5*(WEEKDAY(D2)=5)
Hope this helps.
--
John C
"LynneCreek" wrote:
> I'm a college instructor and would REALLY like to find a way to automatically
> fill the dates for MWF classes or for T-Th classes. So far all I can get
> excel to do is either weekdays or every-other day. Any suggestions would be
> helpful!
(Msg. 3) Posted: Tue Aug 05, 2008 11:15 pm
Post subject: RE: Fill Mon-Wed-Fri dates? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
THANK YOU! This was VERY clever - I use Excel on a regular basis, however, I
learned something new today - I did not know that a function {such as OR in
this case} could be used as you have done - VERY cool! And this works like a
charm - whew! Much appreciated - Thanks again!
"John C" wrote:
> down and dirty
> A2: 8/4/08 (or some other day that is definitely Mon, Wed, or Fri)
> A3: =A2+2*OR(WEEKDAY(A2)=2,WEEKDAY(A2)=4)+3*(WEEKDAY(A2)=6)
> Copy A3 down as needed.
>
> or, for Tue / Thu
> A2: 8/5/08 (or some other day that is definitely Tue or Thu)
> A3: =D2+2*(WEEKDAY(D2)=3)+5*(WEEKDAY(D2)=5)
>
> Hope this helps.
> --
> John C
>
>
> "LynneCreek" wrote:
>
> > I'm a college instructor and would REALLY like to find a way to automatically
> > fill the dates for MWF classes or for T-Th classes. So far all I can get
> > excel to do is either weekdays or every-other day. Any suggestions would be
> > helpful!
(Msg. 4) Posted: Wed Aug 06, 2008 2:05 am
Post subject: Re: Fill Mon-Wed-Fri dates? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
Try these...
Enter the first date in a cell. This date must be a weekday in the sequence.
For M-W-F
A1 = 8/6/2008 (which is a Wednesday)
Enter this formula in A2 and copy down as needed:
=A1+LOOKUP(WEEKDAY(A1),{0,2,6},{2,2,3})
For T-Th
A1 = 8/7/2008 (which is a Thursday):
Enter this formula in A2 and copy down as needed:
=A1+LOOKUP(WEEKDAY(A1),{0,5},{2,5})
--
Biff
Microsoft Excel MVP
"LynneCreek" <LynneCreek.TakeThisOut@discussions.microsoft.com> wrote in message
news:34E11BC6-1544-4B79-A83D-1E0C0EED1A1B@microsoft.com...
> I'm a college instructor and would REALLY like to find a way to
> automatically
> fill the dates for MWF classes or for T-Th classes. So far all I can get
> excel to do is either weekdays or every-other day. Any suggestions would
> be
> helpful!
(Msg. 5) Posted: Wed Aug 06, 2008 2:05 am
Post subject: Re: Fill Mon-Wed-Fri dates? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
THANK YOU! Another very clever fix - I definitely did not think about using
a Lookup function this way - I've learned something ELSE new today! Wahoo!
This also works just GREAT!
Again - my sincere thanks
"T. Valko" wrote:
> Try these...
>
> Enter the first date in a cell. This date must be a weekday in the sequence.
>
> For M-W-F
>
> A1 = 8/6/2008 (which is a Wednesday)
>
> Enter this formula in A2 and copy down as needed:
>
> =A1+LOOKUP(WEEKDAY(A1),{0,2,6},{2,2,3})
>
> For T-Th
>
> A1 = 8/7/2008 (which is a Thursday):
>
> Enter this formula in A2 and copy down as needed:
>
> =A1+LOOKUP(WEEKDAY(A1),{0,5},{2,5})
>
>
> --
> Biff
> Microsoft Excel MVP
>
>
> "LynneCreek" <LynneCreek RemoveThis @discussions.microsoft.com> wrote in message
> news:34E11BC6-1544-4B79-A83D-1E0C0EED1A1B@microsoft.com...
> > I'm a college instructor and would REALLY like to find a way to
> > automatically
> > fill the dates for MWF classes or for T-Th classes. So far all I can get
> > excel to do is either weekdays or every-other day. Any suggestions would
> > be
> > helpful!
>
>
>
(Msg. 6) Posted: Wed Aug 06, 2008 2:31 am
Post subject: Re: Fill Mon-Wed-Fri dates? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
You're welcome. Thanks for the feedback!
--
Biff
Microsoft Excel MVP
"LynneCreek" <LynneCreek RemoveThis @discussions.microsoft.com> wrote in message
news:BD53D9B4-6982-4D59-A5D5-0A234198F2DC@microsoft.com...
> THANK YOU! Another very clever fix - I definitely did not think about
> using
> a Lookup function this way - I've learned something ELSE new today!
> Wahoo!
> This also works just GREAT!
>
> Again - my sincere thanks >
>
> "T. Valko" wrote:
>
>> Try these...
>>
>> Enter the first date in a cell. This date must be a weekday in the
>> sequence.
>>
>> For M-W-F
>>
>> A1 = 8/6/2008 (which is a Wednesday)
>>
>> Enter this formula in A2 and copy down as needed:
>>
>> =A1+LOOKUP(WEEKDAY(A1),{0,2,6},{2,2,3})
>>
>> For T-Th
>>
>> A1 = 8/7/2008 (which is a Thursday):
>>
>> Enter this formula in A2 and copy down as needed:
>>
>> =A1+LOOKUP(WEEKDAY(A1),{0,5},{2,5})
>>
>>
>> --
>> Biff
>> Microsoft Excel MVP
>>
>>
>> "LynneCreek" <LynneCreek RemoveThis @discussions.microsoft.com> wrote in message
>> news:34E11BC6-1544-4B79-A83D-1E0C0EED1A1B@microsoft.com...
>> > I'm a college instructor and would REALLY like to find a way to
>> > automatically
>> > fill the dates for MWF classes or for T-Th classes. So far all I can
>> > get
>> > excel to do is either weekdays or every-other day. Any suggestions
>> > would
>> > be
>> > helpful!
>>
>>
>>
(Msg. 7) Posted: Fri Aug 08, 2008 11:00 pm
Post subject: Re: Fill Mon-Wed-Fri dates? [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
All times are: Eastern Time (US & Canada) (change)
Page 1 of 1
You can post new topics in this forum You can reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum