ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Need a ) somewhere in ISERROR formula but don't know where to put it (https://www.excelbanter.com/excel-worksheet-functions/449619-need-somewhere-iserror-formula-but-dont-know-where-put.html)

[email protected]

Need a ) somewhere in ISERROR formula but don't know where to put it
 

I have this working formula in N8 =LEFT(R8,FIND(":",R8))

Sometimes R8 has a string with no : and N8 returns #VALUE.

I want if N8 returns #VALUE then N8=""

I can get this far and don't know where the ) is supposed to go (from error alert box)so I can complete Value if True and Value if False

=IF(ISERROR(LEFT((R8,FIND(":",R8)) ??

Thanks,
Howard

Claus Busch

Need a ) somewhere in ISERROR formula but don't know where to put it
 
Hi Howard,

Am Mon, 16 Dec 2013 06:18:03 -0800 (PST) schrieb :

=IF(ISERROR(LEFT((R8,FIND(":",R8)) ??


try:
=IFERROR(LEFT(R8,FIND(":",R8)),"")
or
=IF(ISERROR(LEFT(R8,FIND(":",R8))),"",LEFT(R8,FIND (":",R8)))


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2

[email protected]

Need a ) somewhere in ISERROR formula but don't know where to put it
 
On Monday, December 16, 2013 6:34:13 AM UTC-8, Claus Busch wrote:
Hi Howard,



Am Mon, 16 Dec 2013 06:18:03 -0800 (PST) schrieb :



=IF(ISERROR(LEFT((R8,FIND(":",R8)) ??




try:

=IFERROR(LEFT(R8,FIND(":",R8)),"")

or

=IF(ISERROR(LEFT(R8,FIND(":",R8))),"",LEFT(R8,FIND (":",R8)))





Regards

Claus B.

--

Win XP PRof SP2 / Vista Ultimate SP2

Office 2003 SP2 /2007 Ultimate SP2


I used the short one, works fine.

Guess I should remember I have Excel 2010 and the IFERROR.

Thanks.
Regards,
Howard

Claus Busch

Need a ) somewhere in ISERROR formula but don't know where to put it
 
Hi Howard,

Am Mon, 16 Dec 2013 06:45:41 -0800 (PST) schrieb :

I used the short one, works fine.


another suggestion:
=IF(ISNUMBER(FIND(":",R8)),LEFT(R8,FIND(":",R8))," ")


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2


All times are GMT +1. The time now is 05:55 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com