I am tring to add x number of days to a Long date with a pop up box.
Public Function AskForDeadlinePlus4() As String Dim strUserResponse As String s
Instead of using DateAdd, which requires more typing, you could also use DateValue. Following would do it.
DateValue(strUserResponse )+I2
Another solution would be using the conversion function, CDate.
CDate(strUserResponse )+I2