Tip Printed from ExcelTip.com
Format even numbers


Problem:

Column A:B contain two lists of numbers.
How could we create a formula that will indicate rows in which both of the numbers are even?

Solution:

Select columns A:B-->Format-->Conditional Formatting-->Enter the following formula in the formula box:
=MOD($A1,2)+MOD($B1,2)=0
Select a desired format and click OK.
Thus, the selected format will apply to rows in column A:B in which both numbers are even. "

List1___List2
2_______4
1_______6
10______7
12______8