facebook twitter hatena line email

Excel/VBA/基本

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

セルに値を返す

マクロのmodule1に以下を記述

public Function Test
Test = 1
End Function

セルに以下をいれると1が入る

=Test()

変数を使う

public Function Test
dim a as integer
dim b as integer
dim str as string
str = "hello"
a = 2
b = 1
Test = str & (a + b)
End Function

セルに以下をいれるとhello3が入る

=Test()