Excel ベーシック 問題 8 – 25
マクロ「Test1」は、A列に日付以外の値が入力されていた場合、「エラー」と表示するプログラムである。このとき、【 1 】に入る適切な内容を答えなさい。
Sub Test1()
Dim i As Long, A As Long
A = Cells(Rows.Count, 1).End(xlUp).Row
For i = 1 To A
If 【 1 】(Cells(i, 1)) = False Then
MsgBox "エラー"
End If
Next i
End Sub
選択肢
- IsNumeric
- DateSerial
- Format
- IsDate
正解を見る