odd and even numbers

  • Thread starter Thread starter johnrambo
  • Start date Start date
Hi johnrambo!

You could add a helper column and use the ISODD or ISEVEN function
from the Analysis ToolPak and then sort with the criteria from that
column. Ascending gives FALSE first and then TRUE

--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 
Hi
insert a helper column (lets say B) and insert the following formula in
B1
=MOD(A1,2) ->
copy down and sort by column B

Frank
 
If you don't have the ATP you can use

=MOD(A2,2)=1

will return true for odd integers
 
Back
Top