使用Excel VBA将文件夹和变量传递给下一个宏

时间:2017-08-07 02:21:09

标签: excel vba excel-vba

我正在使用Excel VBA。 在第一个宏中,我有

Sub SearchReport()
'code here
Report FileSystem.getFolder(HostFolder)
End Sub

报告是第二个宏名称,我可以将“文件夹”传递到此宏

Sub Report (Folder)
'code here
End Sub

如果我想传递另一个变量p是一个整数?我在第二个宏中需要这样的东西

Sub Report (Folder, p)

我不知道如何在第一个宏中声明它,所以我在这里寻求帮助。任何努力都表示赞赏!谢谢!

1 个答案:

答案 0 :(得分:0)

Sub SearchReport()
    Dim p As Integer
    p = 25
    Report FileSystem.getFolder(HostFolder), p
End Sub