Excel VBA質問箱 IV

当質問箱は、有志のボランティア精神のおかげで成り立っています。
問題が解決したら、必ずお礼をしましょうね。
本サイトの基本方針をまとめました。こちら をご一読ください。

投稿種別の選択が必要です。ご注意ください。
迷惑投稿防止のため、URLの入力を制限しています。ご了承ください。


13012 / 13644 ツリー ←次へ | 前へ→

【7447】もっと簡潔にしたいのですが。 haru 03/9/5(金) 10:26 質問
【7448】Re:もっと簡潔にしたいのですが。 こうちゃん 03/9/5(金) 10:35 回答
【7449】Re:もっと簡潔にしたいのですが。 つん 03/9/5(金) 10:36 回答
【7455】Re:もっと簡潔にしたいのですが。 Jaka 03/9/5(金) 11:47 回答
【7458】Re:もっと簡潔にしたいのですが。 haru 03/9/5(金) 13:07 お礼
【7457】Re:もっと簡潔にしたいのですが。 haru 03/9/5(金) 13:03 お礼

【7447】もっと簡潔にしたいのですが。
質問  haru  - 03/9/5(金) 10:26 -

引用なし
パスワード
    罫線を引くマクロを自動記録しました。
 それを修正して、以下のようにしました。
 もっと簡潔に書きたいのですが、よろしくお願いします。

  Range(Cells(rr + 2, 1), Cells(rr + 7, 8)).Select
  With Selection.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With Selection.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With Selection.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With Selection.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With

【7448】Re:もっと簡潔にしたいのですが。
回答  こうちゃん E-MAIL  - 03/9/5(金) 10:35 -

引用なし
パスワード
   haruさん、こんにちは

こんなんでいいかな?

  Range(Cells(rr + 2, 1), Cells(rr + 7, 8)).Select
  For i = xlEdgeLeft To xlEdgeRight
    With Selection.Borders(i)
      .LineStyle = xlContinuous
      .Weight = xlThin
      .ColorIndex = xlAutomatic
    End With
  Next

【7449】Re:もっと簡潔にしたいのですが。
回答  つん E-MAIL  - 03/9/5(金) 10:36 -

引用なし
パスワード
   haru さん、こんにちは

これって、外枠を引いてるんですよね?

Range(Cells(rr + 2, 1), Cells(rr + 7, 8)).BorderAround _
  LineStyle:=xlContinuous, Weight:=xlThin, ColorIndex:=xlAutomatic

こうかな?
    

【7455】Re:もっと簡潔にしたいのですが。
回答  Jaka  - 03/9/5(金) 11:47 -

引用なし
パスワード
   みなさまこんにちは。

これだけでいいらいです。
Range(Cells(rr + 2, 1), Cells(rr + 7, 8)).BorderAround (1)

【7457】Re:もっと簡潔にしたいのですが。
お礼  haru  - 03/9/5(金) 13:03 -

引用なし
パスワード
   こうちゃんさん、つん さん:

 ありがとうございます。
 うまくいきました。

【7458】Re:もっと簡潔にしたいのですが。
お礼  haru  - 03/9/5(金) 13:07 -

引用なし
パスワード
   ▼Jaka さん:
 こんにちは。
 掲示板を最新にしていませんでした。
 先程、御礼をした時に見つけました。
 ありがとうございます。

13012 / 13644 ツリー ←次へ | 前へ→
ページ:  ┃  記事番号:
2610219
(SS)C-BOARD v3.8 is Free