Hi,
I am using -
=MID(Master!C20,FIND(" ",Master!C20)+1,999)
But when Master!C20 is empty (No Name) I get #VALUE!
What can I do to have this cell just be empty when Master!C20 is empty
Thanks for any help
Hi,
I am using -
=MID(Master!C20,FIND(" ",Master!C20)+1,999)
But when Master!C20 is empty (No Name) I get #VALUE!
What can I do to have this cell just be empty when Master!C20 is empty
Thanks for any help
Last edited by bear; 11-07-2007 at 10:27 AM.
Hi bear,
Use the ISERROR function.
Corine
try usingformat to cure it!IF(ISERROR(your formula,"",your formula))
Not all forums are the same - seek and you shall find
I cannot seem to get this to work.
Can you please post formula.
Thanks
try:
![]()
Please Login or Register to view this content.
You don't really need ISERROR, try
=REPLACE(Master!C20,1,FIND(" ",Master!C20&" "),"")
or simply....
=IF(Master!C20="","",MID(Master!C20,FIND(" ",Master!C20)+1,999))
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
The only one that worked for me was -
=REPLACE(Master!C20,1,FIND(" ",Master!C20&" "),"")
From daddylonglegs
The others left cell blank even if name was present.
Just thought I would let everyone know.
Thanks for all the help, again!!!
I am happy that one of the formulas helped you....Originally Posted by bear
but the only way mine wouldn't have worked is if you have the possibility of names with no spaces between (and your intent it to return a blank..which you did not specify)...
If that was the case, then you could modify my formula to:
![]()
Please Login or Register to view this content.
...just FYI...
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks