Its a easy dumb question.

C

comotoman

When i have formulas with there criteria not fullfilled, i get th
"#N/A". How do i get that to go away
 
B

BenjieLop

comotoman said:
When i have formulas with there criteria not fullfilled, i get th
"#N/A". How do i get that to go away?

One way ...

=IF(ISERROR(YOUR_FORMULA),\" \",YOUR_FORMULA

will take care of this problem of yours.


Regards
 
C

comotoman

=if(iserror(VLOOKUP(A9,$C$154:$G$680,2,FALSE),
",VLOOKUP(A9,$C$154:$G$680,2,FALSE)))

i get an error message base on the "
 
A

Alan

Thats
=IF(ISERROR(VLOOKUP(A9,$C$154:$G$680,2,FALSE)),"",VLOOKUP(A9,$C$154:$G$680,2,FALSE))
 
Top