danenorman13
New Member
- Joined
- Jul 14, 2011
- Messages
- 5
I need to be able to use the numeric data that is entered into a input box to number a column. I am trying to ask how many test runs were completed then sending that count 1-### to another sheet, I would like numbering to start at B3 if I could. I have the input box I believe:
Dim lNum As Long
On Error Resume Next
Application.DisplayAlerts = False
lNum = Application.InputBox _
(Prompt:="Please enter how many test were run.", _
Title:="Number of Tests Run", Type:=1)
On Error GoTo 0
Application.DisplayAlerts = True
If lNum = 0 Then
Exit Sub
Any help is greatly appreciated, thanks!
Dim lNum As Long
On Error Resume Next
Application.DisplayAlerts = False
lNum = Application.InputBox _
(Prompt:="Please enter how many test were run.", _
Title:="Number of Tests Run", Type:=1)
On Error GoTo 0
Application.DisplayAlerts = True
If lNum = 0 Then
Exit Sub
Any help is greatly appreciated, thanks!