これはVBA、またはシートで実行できるマクロです。あなたがヒットしなければならないalt+ F11プロンプトアプリケーション用のVisual Basicを起動するには、ワークブックに行くとright click - insert - module
、そこには、このコードを貼り付けます。次に、を押して、VBA内からモジュールを実行できますF5。このマクロの名前は「テスト」です
Sub test()
'define variables
Dim RowNum as long, LastRow As long
'turn off screen updating
Application.ScreenUpdating = False
'start below titles and make full selection of data
RowNum = 2
LastRow = Cells.SpecialCells(xlCellTypeLastCell).Row
Range("A2", Cells(LastRow, 4)).Select
'For loop for all rows in selection with cells
For Each Row In Selection
With Cells
'if customer name matches
If Cells(RowNum, 1) = Cells(RowNum + 1, 1) Then
'and if customer year matches
If Cells(RowNum, 4) = Cells(RowNum + 1, 4) Then
'move attribute 2 up next to attribute 1 and delete empty line
Cells(RowNum + 1, 3).Copy Destination:=Cells(RowNum, 3)
Rows(RowNum + 1).EntireRow.Delete
End If
End If
End With
'increase rownum for next test
RowNum = RowNum + 1
Next Row
'turn on screen updating
Application.ScreenUpdating = True
End Sub
これにより、並べ替えられたスプレッドシートが実行され、顧客と年の両方に一致する連続した行が結合され、空になった行が削除されます。スプレッドシートは、提示した方法、顧客、年を昇順に並べ替える必要があります。この特定のマクロは連続した行を超えて表示されません。
編集-私with statement
が完全に不要である可能性は十分にありますが、それは誰にも害を与えていません。
2014年2月28日改訂
誰かが別の質問でこの回答を使用し、戻ったとき、私はこのVBAが悪いと思いました。やり直しました-
Sub CombineRowsRevisited()
Dim c As Range
Dim i As Integer
For Each c In Range("A2", Cells(Cells.SpecialCells(xlCellTypeLastCell).Row, 1))
If c = c.Offset(1) And c.Offset(,4) = c.Offset(1,4) Then
c.Offset(,3) = c.Offset(1,3)
c.Offset(1).EntireRow.Delete
End If
Next
End Sub
2016年5月4日再訪
もう一度尋ねました複数の行の値を1つの行に組み合わせる方法は?モジュールがありますが、変数を説明する必要があり、繰り返しになりますが、かなり貧弱です。
Sub CombineRowsRevisitedAgain()
Dim myCell As Range
Dim lastRow As Long
lastRow = Cells(Rows.Count, "A").End(xlUp).Row
For Each myCell In Range(Cells("A2"), Cells(lastRow, 1))
If (myCell = myCell.Offset(1)) And (myCell.Offset(0, 4) = myCell.Offset(1, 4)) Then
myCell.Offset(0, 3) = myCell.Offset(1, 3)
myCell.Offset(1).EntireRow.Delete
End If
Next
End Sub
ただし、問題によっては、step -1
何もスキップされないように行番号を指定する方がよい場合があります。
Sub CombineRowsRevisitedStep()
Dim currentRow As Long
Dim lastRow As Long
lastRow = Cells(Rows.Count, 1).End(xlUp).Row
For currentRow = lastRow To 2 Step -1
If Cells(currentRow, 1) = Cells(currentRow - 1, 1) And _
Cells(currentRow, 4) = Cells(currentRow - 1, 4) Then
Cells(currentRow - 1, 3) = Cells(currentRow, 3)
Rows(currentRow).EntireRow.Delete
End If
Next
End Sub