Here is what happened. I am just a beginner, and i was watching a tutorial video today. At 2:58, the guy in the video just tested the function and it returned a value.
I did the exact same thing as following:
Function customDate() As String
customDate = Format(Date, "dddd dd mmmm yyyy")
End Function
And test this in the immediate window with the following command:
?customDate
the immediate window produced a blank line.
However, if i do this with a built-in function such as:
?Date
it will work and give me a value.
My question is: how do I test my own function in that window.