Hi everyone,

Can someone help me with this?

Write a sub that prompts the user for the day of the week. Using an If statement, if the user responds with a weekend day invite the user to enjoy it while they can, if the user responds that it is a day between Monday and Thursday tell them how many days are left until the weekend, and if the user responds that it is Friday congratulate them on making through the week.

This is what I did, but I cant make it work.

Sub task6()
Dim userDay As String
Dim weekday As String

userDay = InputBox("What day is today?", "Day of the Week", "Enter Day Here")

If userDay =... Then
MsgBox "Enjoy it while you can!"
Else
MsgBox "There are .... days left until the weekend.
End If

End Sub