首页 > 代码库 > VBA_Excel_教程:过程,函数
VBA_Excel_教程:过程,函数
Sub s1() Debug.Print "s1" ‘调用过程:无括号,加call提升可读性 s2 Call s2End SubSub s2() Debug.Print "s2"End Sub
函数当过程用完全没有问题
Function f1() Debug.Print "f1" f2 Call f2End FunctionFunction f2() Debug.Print "f2"End Function
函数是可以有返回值的
Function f1() Debug.Print "f1" strRet = f2 Debug.Print strRet strRet = f3 Debug.Print strRet End FunctionFunction f2() As String ‘函数返回值用【函数名】表示 f2 = "return f2"End FunctionFunction f3() ‘加返回值类型声明更安全,提升可读性 f3 = "return f3"End Function
VBA_Excel_教程:过程,函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。