Ok ok, I got it working.
But wait...hold your applause.
Is there anyway to make it faster? It just seams to be going one cell at a time.
Also, is there anyway to make the code shorter?
Here is my code:
Private Sub Worksheet_Activate()
Dim DateDay As String
Dim Time As String
Dim Time1 As String
Dim Time30 As String
Dim Split As String
Dim CallsOffered As String
Dim ACDCalls As String
Dim ASA As String
Dim AverageAbnTime As String
Dim AbanCalls As String
Dim AbanCallsASL As String
Dim WithinSL As String
Dim AbnRate As String
ActiveWorkbook.Sheets("RS"

.Activate
ActiveSheet.Range("K1"

.Select
Open "C:/CBA Master Int Dump CSV.csv" For Input As #1
Do While Not EOF(1)
Input #1, DateDay, Time, Time1, Time30, Split, CallsOffered, ACDCalls, ASA, AverageAbnTime, AbanCalls, AbanCallsASL, WithinSL, AbnRate
Debug.Print Time
ActiveCell.Value = DateDay
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = Time
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = Time1
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = Time30
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = Split
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = CallsOffered
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = ACDCalls
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = ASA
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = AverageAbnTime
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = AbanCalls
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = AbanCallsASL
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = WithinSL
ActiveCell.Offset(0, 1).Select
ActiveCell.Value = AbnRate
ActiveCell.Offset(1, -12).Select
Loop
End Sub
Thanks
Chris