View Single Post
 
Old 11-01-2018, 08:19 PM
Marcia's Avatar
Marcia Marcia is offline Windows 7 32bit Office 2007
Expert
 
Join Date: May 2018
Location: Philippines
Posts: 551
Marcia has a spectacular aura aboutMarcia has a spectacular aura aboutMarcia has a spectacular aura about
Default

Quote:
Originally Posted by 14spar15 View Post
I have this formula.

=IF(ISERROR(FIND(" ",C2,FIND(" ",C2,1)+1)),C2,LEFT(C2,FIND(" ",C2,FIND(" ",C2,1)+1))) & RIGHT(C2,LEN(C2)-FIND("-",C2))

If there is no data in C2 I want it to return a blank cell and not #VALUE! I have seen IF ISBLANK used and a few other methods but I can’t figure out how to apply it to my formula. Thanks
how about this:
=IF(C2="","",FIND.....................
Reply With Quote