2023年01月05日
文字列が入力されているセル範囲を取得する
Sub Sample()
Dim myRng1 As Range
Dim myRng2 As Range
Set myRng1 = Range("A1:C30") '任意のセル範囲
On Error Resume Next
Set myRng2 = myRng1.SpecialCells _
(Type:=xlCellTypeConstants, Value:=xlTextValues)
On Error GoTo 0
If myRng2 Is Nothing Then
MsgBox "対象セルはありません"
Else
myRng2.Select '確認用
MsgBox myRng2.Address
End If
Set myRng1 = Nothing 'オブジェクトの解放
Set myRng2 = Nothing
End Sub
Dim myRng1 As Range
Dim myRng2 As Range
Set myRng1 = Range("A1:C30") '任意のセル範囲
On Error Resume Next
Set myRng2 = myRng1.SpecialCells _
(Type:=xlCellTypeConstants, Value:=xlTextValues)
On Error GoTo 0
If myRng2 Is Nothing Then
MsgBox "対象セルはありません"
Else
myRng2.Select '確認用
MsgBox myRng2.Address
End If
Set myRng1 = Nothing 'オブジェクトの解放
Set myRng2 = Nothing
End Sub
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
この記事へのコメント
コメントを書く
この記事へのトラックバックURL
https://fanblogs.jp/tb/11818109
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック