Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
i have a dialog in which the user creates a formula with a cell range as parameter (e.g. A1) How can i check if the input of th euser is a valid cell range and not text or anything else? Thanks Jens |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try creating a range
On Error Resume Next Set myRange = Range(user_input) On Error Goto 0 If Not myRange Is Nothing Then 'ok End If -- HTH Bob Phillips (remove nothere from the email address if mailing direct) "kikde" wrote in message ... Hi, i have a dialog in which the user creates a formula with a cell range as parameter (e.g. A1) How can i check if the input of th euser is a valid cell range and not text or anything else? Thanks Jens |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Formula for Single Cell Adress | Excel Worksheet Functions | |||
SUM using results from an Adress-formula | Excel Discussion (Misc queries) | |||
Excel2000: How to check for Optional parameter=Nothing | Excel Programming | |||
VBA: Find and adress cell | Excel Programming | |||
Adress formula nested in an IF... | Excel Programming |