Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 168
Default 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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default 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
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 168
Default 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
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,872
Default 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
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding ISERROR to formula Pierre Excel Worksheet Functions 3 October 8th 07 07:08 PM
Using iserror in formula forest8 Excel Discussion (Misc queries) 1 September 2nd 07 03:51 AM
Using ISERROR to Solve #DIV/0 in a formula Leigh Douglass Excel Worksheet Functions 13 August 23rd 07 06:12 PM
ISERROR Formula Toyin Excel Programming 1 November 16th 04 10:44 AM
IsError Formula Steph[_3_] Excel Programming 1 May 13th 04 08:21 PM


All times are GMT +1. The time now is 06:52 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"