Is there a way to ONLY enable a Tuesday to be selected from a Calendar, with
no other days of the week enabled ?

If so how can i do this?

Corey....

Re: Excel Calendar to ONLY allow for Tuesday's in any month to be selected by Rick

Rick
Thu Jul 24 00:46:18 CDT 2008

I think this BeforeUpdate event code for the Calendar will do what you
want...

Private Sub Calendar1_BeforeUpdate(Cancel As Integer)
Calendar1.Value = Calendar1.Value - Weekday(Calendar1.Value) + 3
End Sub

Rick


"Corey ...." <coza@exemail.com.au> wrote in message
news:%23tGWwuT7IHA.4532@TK2MSFTNGP05.phx.gbl...
> Is there a way to ONLY enable a Tuesday to be selected from a Calendar,
> with no other days of the week enabled ?
>
> If so how can i do this?
>
> Corey....
>


Re: Excel Calendar to ONLY allow for Tuesday's in any month to be selected by Joerg

Joerg
Thu Jul 24 00:52:16 CDT 2008

Unlock Tuesday (Format-Cells-Protection-uncheck 'Locked') and protect your
sheet.

JM


"Corey ...." <coza@exemail.com.au> wrote in message
news:%23tGWwuT7IHA.4532@TK2MSFTNGP05.phx.gbl...
> Is there a way to ONLY enable a Tuesday to be selected from a Calendar,
> with no other days of the week enabled ?
>
> If so how can i do this?
>
> Corey....
>