Excel VBA

書式
Const 定数名 As String(Integer、Double)
使用例

Sub Info() Const CFTA As String = "test001" Const CFTB As Doubl ...

Excel VBA

書式
Call 関数名
使用例

'配列の定数Dim CodeArr As VariantSub testFunc() '関数を呼ぶ Call OpCodeFunc Debug.Print CodeArr(0) D ...