Excel VBA質問箱 IV

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

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


70782 / 76733 ←次へ | 前へ→

【10453】Re:表の作成
回答  INA  - 04/1/27(火) 12:42 -

引用なし
パスワード
   1.ALT+F11キーで、VBEを起動
2.プロジェクトウィンドウのSheet1 を Wクリック
3.中央の真っ白なウィンドウ(コードウィンドウ)に以下のコードをコピペ

(注)もし、動かないときは、デザインモードになっていないか確認する。


Private Sub Worksheet_Change(ByVal Target As Range)
Dim myRange As Range

  If Target.Address <> Range("C1").Address Then Exit Sub
  If Target.Value < 1 Or Target.Value > 65500 Then Exit Sub
  
  'クリア
  Range("E8:I65536").ClearFormats
  Range("E8:I65536").ClearContents
  
  '罫線
  On Error Resume Next
  Set myRange = Range("E7:I7")
  
  With myRange.Borders(xlEdgeLeft)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With myRange.Borders(xlEdgeTop)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With myRange.Borders(xlEdgeBottom)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With myRange.Borders(xlEdgeRight)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With myRange.Borders(xlInsideVertical)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  With myRange.Borders(xlInsideHorizontal)
    .LineStyle = xlContinuous
    .Weight = xlThin
    .ColorIndex = xlAutomatic
  End With
  
  'コピー
  myRange.Copy myRange.Resize(Range("C1").Value)
  
  On Error GoTo 0
End Sub
1 hits

【10391】表の作成 peppu 04/1/23(金) 13:19 質問
【10392】Re:表の作成 INA 04/1/23(金) 14:04 回答
【10394】Re:表の作成 peppu 04/1/23(金) 15:10 質問
【10395】Re:表の作成 peppu 04/1/23(金) 15:47 質問
【10398】Re:表の作成 INA 04/1/23(金) 16:22 回答
【10397】Re:表の作成 INA 04/1/23(金) 16:21 回答
【10447】Re:表の作成 peppu 04/1/27(火) 10:36 質問
【10448】Re:表の作成 INA 04/1/27(火) 10:56 回答
【10449】Re:表の作成 peppu 04/1/27(火) 11:09 お礼
【10451】Re:表の作成 Jaka 04/1/27(火) 12:07 回答
【10453】Re:表の作成 INA 04/1/27(火) 12:42 回答
【10466】Re:表の作成 peppu 04/1/28(水) 11:35 お礼

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