Thanks for the Help, but...
Okay, I did the above and altered the code for my stuff. but it isntworking, I had it working then it just like stopped and gets skipped over.
'Looks for the Age of a record and inserts it into the Template
Set RngCell = ThisWorkbook.Worksheets("RFC").Range("A2")
Set RngRange = ("a2:" & _
ActiveSheet.Cells(LastRow2, LastCol2).Address)
MsgBox ("Range=" & RngRange) 'Testing if this gets recognized
For Each RngCell In RngRange
Select Case RngCell.Value
Case 0
MsgBox ("Value is" & RngCell)
Case 1
MsgBox ("Value is" & RngCell)
Case 2
MsgBox ("Value is" & RngCell)
Case 3
MsgBox ("Value is" & RngCell)
Case 4
MsgBox ("Value is" & RngCell)
Case Is >= 5
MsgBox ("Value is" & RngCell)
End Select
Next RngCell