Holy cow!
Shadowlost, your request has been a learning experiance for me. I'm a big VBA rookie, but helping people helps me so its win win. Please try the following code in the sheet you have all your data in. For that top row were you put final, just double click it and the code should do the rest. It works fine on your sample sheet so let me know if you hit any snags.
This has been good fun!
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim r As Range
Dim n As Range
Dim D As Long
Set r = ActiveCell
If r.Value Like "Final" Then
Application.ScreenUpdating = False
Set n = Range("T" & Cells.Rows.count).End(xlUp)
n.Copy
Range(n, ActiveCell).Select
D = Selection.Columns.count
n.Offset(0, D - 1).Select
Selection.PasteSpecial Paste:=xlPasteValues, _
Operation:=xlNone, _
SkipBlanks:=False, _
Transpose:=False
Application.CutCopyMode = False
Application.ScreenUpdating = True
End If
End Sub
Bookmarks