What is the diff. Between function and sub procedures

)
Function will return value but a sub procedure wont return values…

Showing Answers 1 - 3 of 3 Answers

The difference between a function and sub procedure is
1.A function returns a value but the sub procedures do not return values.
2.We can call function by its name but we need to prefix a call keyword before procedure name.
3.Both function and sub procedures are enclosed by Function and End Function and by Sub and End sub.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions