A formula approach.....
If your range of numbers is B1:C200 then to list all integers between 1 and 100 that don't appear anywhere in that range enter this formula in E1
=IF(SUM(IF(COUNTIF(B$1:C$200,ROW(INDIRECT("1:100")))=0,1))>ROW()-ROW(E$1),SMALL(IF(COUNTIF(B$1:C$200,ROW(INDIRECT("1:100")))=0,ROW(INDIRECT("1:100"))),ROW()-ROW(E$1)+1),"")
confirm with CTRL+SHIFT+ENTER and copy down column
Note: to confirm with CTRL+SHIFT+ENTER select cell with formula, press F2 then hold down CTRL and SHIFT keys and at the same time press ENTER. Curly braces like { and } will appear around the formula in the formula bar
Bookmarks