Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 20
Default VBA check to see if variable value is odd but not equal to 1

I need to run a subroutine based on a variable value. I'm sure it'll be an if
statement, but how do I tell something not to run if a specific variable's
value is an odd number but not equal to 1.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default VBA check to see if variable value is odd but not equal to 1

dim myVal as variant
myval = workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value
'is it a number
if isnumeric(myval) then
'is it different from 1
if myval < 1 then
'is it a whole number
if myval = int(myval) then
if (myval/2) < int(myval/2) then
'it's odd
'do your stuff here, like:
msgbox myval
end if
end if
end if
end if


Dave L wrote:

I need to run a subroutine based on a variable value. I'm sure it'll be an if
statement, but how do I tell something not to run if a specific variable's
value is an odd number but not equal to 1.


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 367
Default VBA check to see if variable value is odd but not equal to 1

Or with not that many lines, but basically the same:

dim myVal as variant
myval =
workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value

if isnumeric(myval) AND myval < 1AND myval mod 2 = 1 then
'do your stuff here, like:
msgbox myval
end if

unless you need to find out which statement did fail you can use the
short form.

hth

Carlo


On Nov 21, 7:26 am, Dave Peterson wrote:
dim myVal as variant
myval = workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value
'is it a number
if isnumeric(myval) then
'is it different from 1
if myval < 1 then
'is it a whole number
if myval = int(myval) then
if (myval/2) < int(myval/2) then
'it's odd
'do your stuff here, like:
msgbox myval
end if
end if
end if
end if

Dave L wrote:

I need to run a subroutine based on a variable value. I'm sure it'll be an if
statement, but how do I tell something not to run if a specific variable's
value is an odd number but not equal to 1.


--

Dave Peterson


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default VBA check to see if variable value is odd but not equal to 1

I read the OP's request as NOT wanting something to run if the
variable's value was odd but not equal to 1, i.e. he DOES want it to
run if equal to 1 or even. I think you (and Dave) have the logic the
wrong way round.

Pete

On Nov 21, 12:58 am, carlo wrote:
Or with not that many lines, but basically the same:

dim myVal as variant
myval =
workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value

if isnumeric(myval) AND myval < 1AND myval mod 2 = 1 then
'do your stuff here, like:
msgbox myval
end if

unless you need to find out which statement did fail you can use the
short form.

hth

Carlo

On Nov 21, 7:26 am, Dave Peterson wrote:



dim myVal as variant
myval = workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value
'is it a number
if isnumeric(myval) then
'is it different from 1
if myval < 1 then
'is it a whole number
if myval = int(myval) then
if (myval/2) < int(myval/2) then
'it's odd
'do your stuff here, like:
msgbox myval
end if
end if
end if
end if


Dave L wrote:


I need to run a subroutine based on a variable value. I'm sure it'll be an if
statement, but how do I tell something not to run if a specific variable's
value is an odd number but not equal to 1.


--


Dave Peterson- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default VBA check to see if variable value is odd but not equal to 1

Could be. Or maybe not. <bg.

That's why I like to use parens in my code (and in text!).

Does
Not A And B
mean
(not A) and B
or
Not (A and B)




Pete_UK wrote:

I read the OP's request as NOT wanting something to run if the
variable's value was odd but not equal to 1, i.e. he DOES want it to
run if equal to 1 or even. I think you (and Dave) have the logic the
wrong way round.

Pete

On Nov 21, 12:58 am, carlo wrote:
Or with not that many lines, but basically the same:

dim myVal as variant
myval =
workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value

if isnumeric(myval) AND myval < 1AND myval mod 2 = 1 then
'do your stuff here, like:
msgbox myval
end if

unless you need to find out which statement did fail you can use the
short form.

hth

Carlo

On Nov 21, 7:26 am, Dave Peterson wrote:



dim myVal as variant
myval = workbooks("someworkbook.xls").worksheet("somesheet ").range("x99").value
'is it a number
if isnumeric(myval) then
'is it different from 1
if myval < 1 then
'is it a whole number
if myval = int(myval) then
if (myval/2) < int(myval/2) then
'it's odd
'do your stuff here, like:
msgbox myval
end if
end if
end if
end if


Dave L wrote:


I need to run a subroutine based on a variable value. I'm sure it'll be an if
statement, but how do I tell something not to run if a specific variable's
value is an odd number but not equal to 1.


--


Dave Peterson- Hide quoted text -


- Show quoted text -


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
can I make cell "yes" equal 1, "no" equal 0 can I make cell yes equal 1, no equa Excel Discussion (Misc queries) 4 April 22nd 23 06:09 AM
Sum cells based on a row variable and seperate column variable CheeseHeadTransplant Excel Worksheet Functions 10 September 23rd 05 06:59 PM
why is it saying sheetcnt is "variable not defined" how to do a global variable to share over multiple functions in vba for excel? Daniel Excel Worksheet Functions 1 July 9th 05 03:05 AM
check if 2 cells are equal but only if they contain numbers not i. Peter Boardman Excel Worksheet Functions 4 April 17th 05 08:16 PM
check if 2 cells are equal but only if they contain numbers not i. Peter Boardman Excel Worksheet Functions 2 April 17th 05 08:13 PM


All times are GMT +1. The time now is 02:06 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"