Help with formula please

J

Joe Gieder

Can this formula be made to list only cell results that
are numeric? Right now it also includes results that are
alphabetic.

=IF(ISERR(SMALL(IF('Priced BOM'!$X$3:$X$733>19,ROW
('Priced BOM'!$X$3:$X$733)),ROW()-ROW($I$5)+1)),"",INDEX
(INDIRECT("'Priced BOM'!$I$1:$I$733"),SMALL(IF('Priced
BOM'!$X$3:$X$733>19,ROW('Priced BOM'!$X$3:$X$733)),ROW()-
ROW($I$5)+1))) - Array Entered

What I'm trying to do (without using autofilter because
two different worksheets are involved and I'm trying to
eliminate as many additional steps as possible) is get
all the items with a delivery of over 19. This formula
works with the exception that it also includes items that
have "stk" as the cell result in place of a number. Is
there a way to modify this formula to not include
the "STK" items.

TIA for all the help
Joe
 
P

Peo Sjoblom

Without testing the formula, would this work?

=IF(ISERR(SMALL(IF(('Priced BOM'!$X$3:$X$733>19)*(ISNUMBER('Priced
BOM'!$X$3:$X$733)),ROW('Priced
BOM'!$X$3:$X$733)),ROW()-ROW($I$5)+1)),"",INDEX(INDIRECT("'Priced
BOM'!$I$1:$I$733"),SMALL(IF(('Priced BOM'!$X$3:$X$733>19)*(ISNUMBER('Priced
BOM'!$X$3:$X$733)),ROW('Priced BOM'!$X$3:$X$733)),ROW()-ROW($I$5)+1)))
 
J

Joe Gieder

Thanks Peo.
It works except now if the item ($I$1:$I$733) contains a
letter it skips it. Any ideas?
Joe
 

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

Similar Threads


Top