2023年01月08日
何かが入力されている最終セルを取得する(単一行対象)
Sub Sample()
Dim myRng1 As Range
Dim myRng2 As Range
Set myRng1 = Cells(1, Columns.Count)
With myRng1
If Len(.PrefixCharacter & .Formula) > 0 Then
Set myRng2 = myRng1 '右端のセルが該当する場合
Else
With .End(xlToLeft)
If Len(.PrefixCharacter & .Formula) > 0 Then
Set myRng2 = .Cells(1)
End If
End With
End If
End With
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 = Cells(1, Columns.Count)
With myRng1
If Len(.PrefixCharacter & .Formula) > 0 Then
Set myRng2 = myRng1 '右端のセルが該当する場合
Else
With .End(xlToLeft)
If Len(.PrefixCharacter & .Formula) > 0 Then
Set myRng2 = .Cells(1)
End If
End With
End If
End With
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/11818197
※ブログオーナーが承認したトラックバックのみ表示されます。
この記事へのトラックバック