I've put it into double click not just click cell (select).
Go to VBA editor (Alt+F11) and into code of sheet put:
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Dim MyNumbs() As Variant
Dim i As Integer
' numbers which have to appear in particular columns start with C. If cell have to be empty put ""
MyNumbs = Array(1130, 530, "", 100, 100, 10, 90, "", "", 90, 30)
If Not Intersect(Target, Range("A10:A" & ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row)) Is Nothing Then
Target.Offset(0, 1).Value = Target.Value
For i = 0 To UBound(MyNumbs)
Target.Offset(0, 2 + i).Value = MyNumbs(i)
Next i
End If
Cancel = True
End Sub
Check attached file.
Bookmarks