#N/A errors

F

Fred Tuck

I have a formula which returns a #n/a error in a string which I need a
formula in all the cells which will turn the #N/A into a blank cell so that
another formula can read the string
 
K

Kevin H. Stecyk

Fred Tuck...
I have a formula which returns a #n/a error in a string which I need a
formula in all the cells which will turn the #N/A into a blank cell so
that
another formula can read the string

Hi Fred,

Can you try rewriting that? I couldn't follow exactly what you are looking
to do.

Maybe give us some cells and information to work with.

Regards,
Kevin
 
R

Randall Parker

Wow, what syntax. Try some punctuation next time.

Anyway, if I understand you correctly, you are stringing together cells and
you wish to replace #N/A with a space. If this is correct, here is a fix you
can try:

IF(ISERROR(cell location)," ",+cell location). If you place this in the
point of the string that you expect the error, you should get what you want.

In the alternative, you could use the COPY and PASTE SPECIAL - VALUES
commands first, and then change your IF statement to look for "#N/A". Good
luck.
 

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