ActiveWorkbook.Names.Add Name:="RecordCount", _
                 RefersToR1C1:="=qryTC2015ContainerUtilizationSh!R1C100"
    Range("CV1").Select
    ActiveCell.FormulaR1C1 = "=COUNTA(C[-99])"
    RecordCount = Range("RecordCount")
    
    
    
    
    Range("A2:N" & RecordCount).Select
    
    'Range(Selection, Selection.End(xlDown)).Select
    
    Selection.Copy
    
    Windows("TC Containers Shipped Report Template.xlsm").Activate
          
    Sheets("Container Utilization").Select
    Range("A2").Select
    Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
what would the problem be and how can it be fixed?
 
     
    