View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
VBA Noob VBA Noob is offline
external usenet poster
 
Posts: 1
Default Syntax to "OR" 3 "ISERROR" conditions


Try this array

=IF(ISERROR(A1:C1),"",C1)

Enter in D1 with Ctrl + Shift + Enter

or this alonger non arrays

=IF(OR(ISERROR(A1),ISERROR(B1),ISERROR(C1)),"",C1)



VBA Noob


--
VBA Noob
------------------------------------------------------------------------
VBA Noob's Profile: http://www.excelforum.com/member.php...o&userid=33833
View this thread: http://www.excelforum.com/showthread...hreadid=563980