facebook twitter hatena line email

「Excel」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(カスタム関数)
(カスタム関数)
行11: 行11:
 
</pre>
 
</pre>
 
# excelのセルに"=kakeru(2,2)"を入れると4と計算される。
 
# excelのセルに"=kakeru(2,2)"を入れると4と計算される。
 +
 +
==ボタン設置して計算==
 +
図形登録して、右クリックから、マクロ登録し、Button1を選択
 +
<pre>
 +
Sub Button1
 +
Dim x As Integer
 +
Dim y As Integer
 +
x = Range("A1").Value
 +
y = Range("B1").Value
 +
Range("C1").Value = x * y
 +
Sub End
 +
</pre>

2021年5月24日 (月) 20:36時点における版

2人で共有して編集

メニュー/ツール/ブックの共有

カスタム関数

  1. メニュー/ツール/VisualBasic
  2. VisualBasicの左のウィンドウで、標準モジュールを作成して、以下を入れる
Function kakeru(x As Integer, y As Integer)
    kakeru = x *y
End Function
  1. excelのセルに"=kakeru(2,2)"を入れると4と計算される。

ボタン設置して計算

図形登録して、右クリックから、マクロ登録し、Button1を選択

Sub Button1
Dim x As Integer
Dim y As Integer
x = Range("A1").Value
y = Range("B1").Value
Range("C1").Value = x * y
Sub End