I assumed that you would be adding the number manually, and not copy and pasting the numbers.
Inside the Visual Basic Editor, click on the folder: Microsoft Excel Objects
Click on the worksheet of your choice.
Copy the code below into your worksheet module.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Range("A:A"), Target) Is Nothing Then
If IsNumeric(Target.Cells(1, 1)) Then
Range("A" & Target.Row & ":K" & Target.Row).Borders(xlEdgeTop).Weight = xlMedium
End If
End If
End Sub
You can change the weight of the line to any of the following values:
xlHairline
xlMedium
xlThick
xlThin
Bookmarks