facebook twitter hatena line email

Excel/VBA/基本

提供: 初心者エンジニアの簡易メモ
2023年2月17日 (金) 22:18時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==基本== マクロのmodule1に以下を記述 <pre> public Function Test dim a as integer dim b as integer dim c as string c = "hello" a = 2 b = 1 Test = c & (a + b)...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

基本

マクロのmodule1に以下を記述

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

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

=Test()