Sub ActionsReports()
Dim CopiedArea As Range
Dim Tablo As Worksheet
Set CopiedArea = Range("B160:U160")
With IsNumeric(Left(ActiveSheet.Name, 1))
If ActiveSheet.[D9].Value = "1" Then
CopiedArea.Copy
With Cells(2, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "2" Then
CopiedArea.Copy
With Cells(22, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "3" Then
CopiedArea.Copy
With Cells(42, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "4" Then
CopiedArea.Copy
With Cells(62, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "5" Then
CopiedArea.Copy
With Cells(82, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "6" Then
CopiedArea.Copy
With Cells(102, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "7" Then
CopiedArea.Copy
With Cells(122, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "8" Then
CopiedArea.Copy
With Cells(142, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "9" Then
CopiedArea.Copy
With Cells(162, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "10" Then
CopiedArea.Copy
With Cells(182, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "11" Then
CopiedArea.Copy
With Cells(202, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
If ActiveSheet.[D9].Value = "12" Then
CopiedArea.Copy
With Cells(222, 3)
.PasteSpecial Paste:=xlPasteValues, Transpose:=True
End With
End If
End With
Application.CutCopyMode = False
End Sub