Is it possible to set a default value for a function arguement? for example
Function selectDate (month,Day,year=2000)
....
....
End Function
So if the function is called with no year argument (I.e. myDate=selectDate(04,23) ) the year will automatically be set to 2000?
Thanks,
Brad
Function selectDate (month,Day,year=2000)
....
....
End Function
So if the function is called with no year argument (I.e. myDate=selectDate(04,23) ) the year will automatically be set to 2000?
Thanks,
Brad