Not a problem at all. I first figured out how to put in next days date which was just now()+1. Then I figured out how to add just the day like "Friday". Then I just had day1 = friday and wrote a simple if statement. So when the string = "Friday" it skips 3 days instead of just 1. The Ship_Label.caption is refering to the text box I want this date to go in.
Heres the code.
Dim day1 As String
day1 = Format$(Now, "dddd")
If day1 = "Friday" Then
Ship_Label.Caption = Format$(Now + 3, "dddd,mmmm dd, yyyy")
Else
Ship_Label.Caption = Format$(Now + 1, "dddd,mmmm dd, yyyy")
End If