以下の内容はhttps://hake.hatenablog.com/entry/20151109/p15より取得しました。


EXCEL VBAメモ - シート上の選択範囲の移動とサイズ変更

Range("A1:C3").Select
    
' 選択範囲を広さを保持したまま縦 + 1, 横 + 1へ移動
Selection.Offset(1, 1).Select
MsgBox Selection.Address        ' B2:D4
    
' 選択範囲の広さを縦 - 1, 横 - 1に変更
Selection.Resize(Selection.Rows.Count - 1, Selection.Columns.Count - 1).Select
MsgBox Selection.Address        ' B2:C3



以上の内容はhttps://hake.hatenablog.com/entry/20151109/p15より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14