Hi,
I have a function with optional inputs. The thing is I need some way of knowing was an input entered or not. How do I do this?
Function Read(i1 As Integer, Optional i2 As Integer, Optional i3 As Integer, Optional i4 As Integer)
How do I tell if "i4" was entered or not?
Thanks