You could get the input by asking:
Option Explicit
Sub testme03()
Dim myVal1 As Variant
Dim myVal2 As Variant
Dim myRowToInsertBefore As Long
Dim wks As Worksheet
myRowToInsertBefore = 13
myVal1 = InputBox(Prompt:="what's the first value?")
If Trim(myVal1) = "" Then
MsgBox "Quitting"
Exit Sub
End If
myVal2 = InputBox(Prompt:="what's the second value?")
If Trim(myVal2) = "" Then
MsgBox "Quitting"
Exit Sub
End If
For Each wks In ActiveWorkbook.Worksheets
With wks
.Rows(myRowToInsertBefore).Insert
.Cells(myRowToInsertBefore, "a").Value = myVal1
.Cells(myRowToInsertBefore, "B").Value = myVal2
End With
Next wks
End Sub
In fact, you may want to build a small userfrom so that you could get all the
information at once.