How to Separate Odd and Even Numbers in Excel – 6 Methods

 

To separate odd and even numbers:

Odd and Even Numbers in Excel


Method 1 – Combining the  FILTER and the MOD Functions to Separate Odd and Even Numbers

Use the FILTER function and  incorporate the MOD function.

Steps:

  • In C5, enter the following formula.
=FILTER($B$5:$B$21,MOD($B$5:$B$21,2)=1)
  • Press Enter to see the odd numbers.

Combining FILTER and MOD Functions to Separate Odd and Even Numbers

Formula Explanation:

  • MOD($B$5:$B$21,2)

The MOD function returns the remainder after the numbers in B5:B21 are divided by 2.
Output: {0;1;1;0;1;1;1;1;0;0;0;1;1;0;1;0;1}

  • MOD($B$5:$B$21,2)=1

This checks whether the condition set is TRUE. If it’s not TRUE, it returns FALSE.
Output: {FALSE;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;TRUE}

  • FILTER($B$5:$B$21,MOD($B$5:$B$21,2)=1)

The FILTER function returns the value from B5:B21 when it finds the condition TRUE.
Output: {91;21;29;89;93;21;79;49;9;51}

  • For even numbers, the formula is:
=FILTER($B$5:$B$21,MOD($B$5:$B$21,2)=0)

Combining FILTER and MOD Functions to Separate Odd and Even Numbers


Method 2 – Use an INDEX Formula If the FILTER Function Is Not Available

Use the INDEX, SMALL, IF, ISEVEN/ISODD, COLUMN, and COLUMNS functions and the IFERROR function to handle errors.

Steps:

  • In C5, enter the following formula to get the odd numbers.
=IFERROR(INDEX($B$5:$B$21,SMALL(IF(ISODD($B$5:$B$21+0),ROW($B$5:$B$21)),ROWS($C$5:C5))-ROW($B$4)),"")

Use an INDEX Formula to Separate Odd and Even Numbers If FILTER Function Is Not Available

  • Drag down the Fill Handle to see the result in the rest of the cells.

Formula Explanation:

The ISODD function will return TRUE for odd numbers (or FALSE for even numbers) to the IF function. The IF function will return the row number in B5:B21 in which the condition is TRUE. The SMALL function will find the smallest number in this array and the INDEX function will return numbers accordingly.

  • The formula for even numbers is:
=IFERROR(INDEX($B$5:$B$21,SMALL(IF(ISEVEN($B$5:$B$21+0),ROW($B$5:$B$21)),ROWS($C$5:C5))-ROW($B$4)),"")


Method 3 – Separate Odd and Even Numbers in Excel by Sorting them

Steps:

  • Add a helper column: column C.
  • In C5, enter the following formula.
=MOD(B5,2)
  • Drag down the Fill Handle to see the result in the rest of the cells.

  • Select B5:C21 and go to the Data tab ⇒ Sort & FilterSort command.

  • Select Sort by: Helper Column and click OK.

Separate Odd and Even Numbers in Excel by Sorting

  • The even numbers are sorted at the top and the odd numbers are at the bottom.

  • Delete the helper column.

Method 4 – Use the IF Formula to Mark Even and Odd Numbers Separately

  • In C5, enter the following formula.
=IF(ISODD(B5:B21+0),"ODD!","EVEN")

Use IF Formula to Mark Even and Odd Numbers Separately

Similar Formula with MOD Function:

=IF(MOD(B5:B21,2)=1,"ODD!","EVEN")

Method 5 – Filter Odd and Even Numbers in Excel

Steps:

  • Add a helper column: column C.
  • In C5, enter the following formula.
=ISEVEN(B5)
  • Drag down the Fill Handle to see the result in the rest of the cells.

  • Select a cell and go to Home  ⇒ Editing  ⇒ Sort & FilterFilter.

Filter Odd and Even Numbers in Excel

  • Uncheck FALSE to get the even numbers and uncheck TRUE to get the odd numbers.

Filter Odd and Even Numbers in Excel

  • Click OK.


Method 6 – Distinguish Odd and Even Numbers with Different Colors Using Conditional Formatting

 

Steps:

  • Select  B5:B21 and go to Home Conditional Formatting New Rule.

  • Select “Use a formula to determine which cells to format” and use the following formula in Rule Description.
=ISEVEN($B5)
  • Click Format.

Distinguish Odd and Even Numbers with Different Colors Using Conditional Formatting

  • Choose a format and click OK twice.

  • Even and odd numbers are now colored and can be distinguished.


Download Practice Workbook

Download the workbook to practice.

 


<< Go Back to | Excel for Math | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Masum Mahdy
Masum Mahdy

Abu Talha Masum Mahdy (Assistant Project Manager, ExcelDemy) has been working with the ExcelDemy family for over 2 years. He wrote 30+ articles and reviewed more than 1300 others for ExcelDemy. Currently, he is responsible for reviewing articles from 2 writing teams of ExcelDemy. He ensures correctness and fluency in his team write-ups. Mahdy holds a BSc in Naval Architecture and Marine Engineering from BUET. His interests are Project Management, Content Writing, SEO, Digital Marketing, Data Analytics and... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo