「Excel VBA 最後のセルを取得」の版間の差分
ナビゲーションに移動
検索に移動
1行目: | 1行目: | ||
− | ==Excel VBA | + | ==[[Excel VBA 最後のセルを取得]]する== |
[[Excel VBA]] | | [[Excel VBA]] | | ||
− | ===Excel ワークシート上の最終セルに移動する=== | + | ===[[Excel]] ワークシート上の最終セルに移動する=== |
*Ctrl + End で最後のセルに移動する | *Ctrl + End で最後のセルに移動する | ||
*一旦Endキーを押して、Homeキーを押す | *一旦Endキーを押して、Homeキーを押す | ||
− | ===Excel ワークシート上の最終セルをVBAから取得する=== | + | ===[[Excel]] ワークシート上の最終セルをVBAから取得する=== |
====シート全体==== | ====シート全体==== | ||
'A1から、Ctrl + End で取得できるセル | 'A1から、Ctrl + End で取得できるセル | ||
Dim sheet As Worksheet | Dim sheet As Worksheet | ||
− | Dim endCel As | + | Dim endCel As [[R]]ange |
Set sheet = ActiveSheet | Set sheet = ActiveSheet | ||
− | Set endCel = sheet. | + | Set endCel = sheet.[[R]]ange("A1").SpecialCells(xlLastCell) |
− | Debug.Print endCel. | + | Debug.Print endCel.[[R]]ow & "," & endCel.Column |
====列ごと==== | ====列ごと==== | ||
23行目: | 23行目: | ||
targetCol = 1 | targetCol = 1 | ||
Set sheet = ActiveSheet | Set sheet = ActiveSheet | ||
− | sheet.Cells( | + | sheet.Cells([[R]]ows.Count,targetCol).End(xlUp).[[R]]ow |
===データを削除しても、最終セル位置が元に戻らない場合=== | ===データを削除しても、最終セル位置が元に戻らない場合=== | ||
*一旦、上書き保存を行う。 | *一旦、上書き保存を行う。 | ||
---- | ---- | ||
− | {{include_html banner_html, "!Excel"}} | + | {{include_html [[banner_html]], "!Excel"}} |
2020年2月16日 (日) 04:25時点における版
目次
Excel VBA 最後のセルを取得する
Excel ワークシート上の最終セルに移動する
- Ctrl + End で最後のセルに移動する
- 一旦Endキーを押して、Homeキーを押す
Excel ワークシート上の最終セルをVBAから取得する
シート全体
'A1から、Ctrl + End で取得できるセル Dim sheet As Worksheet Dim endCel As Range Set sheet = ActiveSheet Set endCel = sheet.Range("A1").SpecialCells(xlLastCell) Debug.Print endCel.Row & "," & endCel.Column
列ごと
'1列目の最下行からCtrl + ↑ で取得できる行 Dim targetCol as Integer targetCol = 1 Set sheet = ActiveSheet sheet.Cells(Rows.Count,targetCol).End(xlUp).Row
データを削除しても、最終セル位置が元に戻らない場合
- 一旦、上書き保存を行う。
{{include_html banner_html, "!Excel"}}
© 2006 矢木浩人