I think its a question of style.
personally I like to use functions when I want to return a single value,
otherwise subs.
I find that easier to understand when I look at code I wrote a few years
ago.
regards
Charles
______________________
Decision Models
FastExcel Version 2 now available.
www.DecisionModels.com/FxlV2WhatsNew.htm
"Rob van Gelder" wrote in message
...
Something that I've always been curious about, but never found a real
reason
behind.
Why do we use a Sub instead of using a Function?
Is there any reason other than a Sub returns nothing?
These both do exactly the same thing:
Function Test()
MsgBox "test"
End Function
Sub Test()
MsgBox "test"
End Sub
At the moment my opinion is that Sub is redundant and may as well never be
used.
Thoughts? Comments?
--
Rob van Gelder - http://www.vangelder.co.nz/excel