I am not quite grasping what your wanting here: Are there variable rows?

This copies the range you talked about to a newly created sheet called countries:

VB Code:
  1. Option Explicit
  2.  
  3. Sub ChopiT()
  4.     Dim wASht As Worksheet
  5.     Set wASht = ActiveSheet
  6.    
  7.     Sheets.Add
  8.     On Error GoTo ErrH
  9.     ActiveSheet.Name = "Countries"
  10.    
  11.     wASht.Range("A81:A141").Copy Sheets("Countries").Range("A1")
  12.    
  13. ErrExit:
  14.     Set wASht = Nothing
  15.     Exit Sub
  16. ErrH:
  17.     MsgBox Err.Description
  18.     GoTo ErrExit
  19. End Sub