Sub Check1(x As Integer)
Debug.Print x
End Sub
Sub Play1()
Check1(4)
End Sub
'output = 4
However,
Sub Check2(x As Integer, y as integer)
Debug.Print x & y
End Sub
Sub Play2()
Check2(4,3)
End Sub
'error = Compile Error: Expected =
How can I utilise multiple parameters and call them from different subroutines?