Try this
Sub Test()
Sheet1.Activate
For N = 1 To Cells(1, 1).CurrentRegion.Rows.Count
For M = 1 To Cells(1, 1).CurrentRegion.Columns.Count
Select Case M
Case 1 To 4
Sheet2.Cells(N + 1, M) = Cells(N, M)
Case Else
TargetColumn = ""
If InStr(Cells(N, M), "]") > 0 Then
On Error Resume Next
TargetColumn = Sheet2.Rows(1).Find(What:=Left(Cells(N, M), InStr(Cells(N, M), "]") - 1), LookIn:=xlValues, LookAt:=xlPart, MatchCase:=False).Column
Sheet2.Cells(N + 1, TargetColumn) = Right(Cells(N, M), Len(Cells(N, M)) - InStr(Cells(N, M), "]"))
On Error GoTo 0
End If
End Select
Next M
Next N
End Sub
You may hit problems as there isn't a particularly good match betweeen the names of your columns and the the names of your parameters - there is always a danger of ambiguity with a partial match.
Bookmarks