View Single Post
  #2   Report Post  
TommySzalapski
 
Posts: n/a
Default


There is a very easy solution for you... The MOD function. =MOD(number,
devisor) What is does is devide the number by the devisor and return the
remainder. For example: MOD(7,5) returns 2. Even better (for you)
MOD(5,2) = 1; MOD(6,2) = 0. Summary MOD(any odd number, 2) = 1.
MOD(any even number, 2) = 0.

This should be very easy to implement.

Szalapski


--
TommySzalapski
------------------------------------------------------------------------
TommySzalapski's Profile: http://www.excelforum.com/member.php...o&userid=25561
View this thread: http://www.excelforum.com/showthread...hreadid=395508