How can I make sString default to "HI" if that argument is ommited? The only way I can think of right now is placing this in the TryThis sub.

if sString = "" then sString = "HI"

Code:
Private Sub TryThis(Optional sString as String)
if sString = "" then sString = "HI"