How to remove zero values from a worksheet?

R

ron

how do i remove the zeros that apear automaticaly when as a result of the
lookup function in a very large worksheet?
 
K

KJ

ron said:
how do i remove the zeros that apear automaticaly when as a result of the
lookup function in a very large worksheet?
Try find & replace for *only entire cells* containing zero....you want
to make sure that box is checked!
 
A

aka excel

you could modify the lookup formula to include an IF statement in such a way
that if the Lookup function works out to be a zero, then display "" (blank),
if not let it display the result of the Lookup function.

It will look something like this.

=IF(Lookup(<arguments>)=0,"",Lookup(<Arguments>))

Note : both the Lookup functions must be the same
 

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

Top