How to identify todays day, not date?

Todd_M

Board Regular
Joined
Feb 24, 2002
Messages
117
Hi-

Private Sub CommandButton2_Click()
If today = Tuesday Then
MsgBox "OK"
End If
End Sub

How do you write a code that tells what today's day is, so that if today is Tuesday, then a msgbox pops up?
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
On 2002-04-09 15:59, Todd_M wrote:
Hi-

Private Sub CommandButton2_Click()
If today = Tuesday Then
MsgBox "OK"
End If
End Sub

How do you write a code that tells what today's day is, so that if today is Tuesday, then a msgbox pops up?

Some options:

If Weekday(Date,vbMonday) = 2 then

or

If Format(Date,"ddd") = "tue" then

or

If Format(Date,"dddd" = "tuesday" then
 
Upvote 0

Forum statistics

Threads
1,214,415
Messages
6,119,382
Members
448,889
Latest member
TS_711

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
Back
Top