Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Can data validation be set up to accept a 0( (zero) or any whole number
between 25,000 and 10,000,000? Or does this have to be controlled with VBA? This needs to work with xll03 and later versions |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This DV formula should work fine:
=AND(ISNUMBER(A2),A2=25000,A2<=10000000) Joy? hit the YES below -- Max Singapore --- "Brad" wrote: Can data validation be set up to accept a 0( (zero) or any whole number between 25,000 and 10,000,000? Or does this have to be controlled with VBA? This needs to work with xll03 and later versions |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks you got me going the right direction - however your formula won't
accept 0, because it isn't greater than 25,000 the below equation will work =OR(D11=0,AND(D11=25000,D11<=10000000)) -- Wag more, bark less "Max" wrote: This DV formula should work fine: =AND(ISNUMBER(A2),A2=25000,A2<=10000000) Joy? hit the YES below -- Max Singapore --- "Brad" wrote: Can data validation be set up to accept a 0( (zero) or any whole number between 25,000 and 10,000,000? Or does this have to be controlled with VBA? This needs to work with xll03 and later versions |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Validation Data using Validation Table cell range..... | Excel Discussion (Misc queries) | |||
How do I get a Data validation list to select another validation l | New Users to Excel | |||
data validation invalid in dynamic validation list | Excel Discussion (Misc queries) | |||
data validation invalid in dynamic validation list | Excel Worksheet Functions | |||
Data validation with validation lists and combo boxs | Excel Discussion (Misc queries) |