Excel VBA質問箱 IV

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

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


8977 / 76732 ←次へ | 前へ→

【73323】Re:縦の並びを横の並びにしたい(行列の入れ替え)
回答  ウッシ  - 12/12/20(木) 12:05 -

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

地道に・・・

Sub test()
  Dim t As Range
  Dim s As Range
  Dim i As Long
  
  On Error Resume Next
  Set t = Application.InputBox("コピー元を選択", , , , , , , 8)
  If t Is Nothing Then Exit Sub
  If t.Columns.Count > 1 Then Exit Sub
  Set s = Application.InputBox("貼り付け先を選択", , , , , , , 8)
  If s Is Nothing Then Exit Sub
  If s.Rows.Count > 1 Then Exit Sub
  On Error GoTo 0
  Application.ScreenUpdating = False
  Application.Calculation = xlCalculationManual
  For i = 1 To t.Rows.Count
    s.Cells(1, i).Formula = t.Cells(i, 1).Formula
  Next
  Application.Calculation = xlCalculationAutomatic
  Application.ScreenUpdating = True
  Set t = Nothing
  Set s = Nothing
End Sub

293 hits

【73322】縦の並びを横の並びにしたい(行列の入れ替え) ブーチー 12/12/20(木) 11:03 質問
【73323】Re:縦の並びを横の並びにしたい(行列の入... ウッシ 12/12/20(木) 12:05 回答
【73332】Re:縦の並びを横の並びにしたい(行列の入... ブーチー 12/12/21(金) 10:06 お礼
【73336】Re:縦の並びを横の並びにしたい(行列の入... ウッシ 12/12/21(金) 11:12 回答
【73337】Re:縦の並びを横の並びにしたい(行列の入... ブーチー 12/12/21(金) 16:58 お礼
【73324】Re:縦の並びを横の並びにしたい(行列の入... UO3 12/12/20(木) 16:25 発言
【73334】Re:縦の並びを横の並びにしたい(行列の入... ブーチー 12/12/21(金) 10:08 お礼

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