エクセルVBAによる欠損値補完
エクセルVBAによる欠損値補完
指定した領域のセルで空欄が存在する場合、そのセルに任意の値を入力するプログラムです。
Sub Hokan()
Dim sentaku As String
Dim atai As String
sentaku = InputBox(“選択する範囲を入力してください”, “選択する範囲を入力”, “”)
atai = InputBox(“空欄のセルに入れる値を入力してください”, ”値を入力”, “”)
Range(sentaku).Select
Selection.SpecialCells(xlCellTypeBlanks).Select
Selection.FormulaR1C1 = atai
End Sub
Author And Source
この問題について(エクセルVBAによる欠損値補完), 我々は、より多くの情報をここで見つけました https://qiita.com/your_dammy_21/items/be795131d411c48aeec1著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .