Place a combobox and a commandbutton onto a UserForm. Then use this code
Load the ComboBox with week numbers
Private Sub UserForm_Initialize()
Dim i As Integer
For i = 1 To 52
Me.ComboBox1.AddItem i
Next i
End Sub
In the commandbutton this code will copy the weekly data, week numbers are in Column A
Private Sub CommandButton1_Click()
On Error Resume Next
Dim c As Range
Dim myRange As Range
Dim rng As Range
Dim wk As Integer
Dim r As Long
Set rng = Range(Cells(1, 1), Cells(Rows.Count, 1).End(xlUp))
wk = Me.ComboBox1.Value
For Each c In rng
If c = wk Then
If myRange Is Nothing Then
Set myRange = c
Else
Set myRange = Union(myRange, c)
End If
End If
Next c
myRange.EntireRow.Copy Sheets("Sheet2").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
On Error GoTo 0
End Sub
Bookmarks