Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Help! I need a way to only allow numeric values to be accepted by an
input box. My code starts with inputNum = InputBox("Please enter the part number", "Part Number", 0) x = Val(inputNum) I'm using a vlookup to make sure a input number is valid, but not sure how to go about it if letters were input. The program should not go any further if an alpha string is entered. How do I check for this?? Thank you! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sorry one other note....This is VBA for Excel.
On Feb 3, 11:45 am, wrote: Help! I need a way to only allow numeric values to be accepted by an input box. My code starts with inputNum = InputBox("Please enter the part number", "Part Number", 0) x = Val(inputNum) I'm using a vlookup to make sure a input number is valid, but not sure how to go about it if letters were input. The program should not go any further if an alpha string is entered. How do I check for this?? Thank you! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There are two different inputboxes. Use the Excel Inputbox instead:
Sub abc() Dim x As Long x = Application.InputBox("Please enter the part number", _ "Part Number", 0, Type:=1) End Sub -- Regards, Tom Ogilvy wrote in message ps.com... Sorry one other note....This is VBA for Excel. On Feb 3, 11:45 am, wrote: Help! I need a way to only allow numeric values to be accepted by an input box. My code starts with inputNum = InputBox("Please enter the part number", "Part Number", 0) x = Val(inputNum) I'm using a vlookup to make sure a input number is valid, but not sure how to go about it if letters were input. The program should not go any further if an alpha string is entered. How do I check for this?? Thank you! |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
see if this work:
x=inputbox("the prompt","the title") if isnumber(X) then all_correct else start_from_beginning_and_this_time_write_it_well end if -- --- Zz wrote in message oups.com... Help! I need a way to only allow numeric values to be accepted by an input box. My code starts with inputNum = InputBox("Please enter the part number", "Part Number", 0) x = Val(inputNum) I'm using a vlookup to make sure a input number is valid, but not sure how to go about it if letters were input. The program should not go any further if an alpha string is entered. How do I check for this?? Thank you! |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if isnumber(X) then
I think you mean isnumeric(x) or application.isnumber(x) "zz" wrote: see if this work: x=inputbox("the prompt","the title") if isnumber(X) then all_correct else start_from_beginning_and_this_time_write_it_well end if -- --- Zz wrote in message oups.com... Help! I need a way to only allow numeric values to be accepted by an input box. My code starts with inputNum = InputBox("Please enter the part number", "Part Number", 0) x = Val(inputNum) I'm using a vlookup to make sure a input number is valid, but not sure how to go about it if letters were input. The program should not go any further if an alpha string is entered. How do I check for this?? Thank you! |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Could you try
inputNum = Application.InputBox("Please enter the part number", "Part Number", Type:=1) VBA Noob On 3 Feb, 17:45, wrote: Help! I need a way to only allow numeric values to be accepted by an input box. My code starts with inputNum = InputBox("Please enter the part number", "Part Number", 0) x = Val(inputNum) I'm using a vlookup to make sure a input number is valid, but not sure how to go about it if letters were input. The program should not go any further if an alpha string is entered. How do I check for this?? Thank you! |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi!
Try this one inputNum = Application.InputBox("Please enter the part number", _ "Part Number", , , , , , 1) Regards Kari J Keinonen |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to accept input and then populate/concatenate this with other | New Users to Excel | |||
accept input and move active cell? | Excel Programming | |||
Can a cell be set to accept input only once? | Excel Worksheet Functions | |||
I want to maintain a master listing and accept input and output? | Excel Programming | |||
Can VBA accept input from a message box? | Excel Programming |