odd and even numbers

J

johnrambo

Any ideas how to sort a column of figures so as to
separate odd numbers from even?
 
N

Norman Harker

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.
 
F

Frank Kabel

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
 
P

Peo Sjoblom

If you don't have the ATP you can use

=MOD(A2,2)=1

will return true for odd integers
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top