Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default Need correct IF(ISBLANK) formula when referencing whether one of twocells (OR) is blank, returning "no value"

=IF(ISBLANK(A1),IF(ISBLANK(B1),"",C1(likely wron formula);

Don't know if I use a comma or OR, or another formula, but if either
A1 or B1 is blank, I want "no value" in C1. If both A1 and B1 have
value then it returns the Value in C1.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,058
Default Need correct IF(ISBLANK) formula when referencing whether one of t

=IF(OR(A1="",B1=""),"",C1)
--
Gary''s Student - gsnu200786
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 123
Default Need correct IF(ISBLANK) formula when referencing whether one oftwo cells (OR) is blank, returning "no value"

It would work if you add an OR in the
=IF(OR(ISBLANK(A1),ISBLANK(B1)),"",C1)
but it cannot both put a value in C1 (ie, live there) and check the
value in C1.

On May 15, 12:09 pm, insitedge wrote:
=IF(ISBLANK(A1),IF(ISBLANK(B1),"",C1(likely wron formula);

Don't know if I use a comma or OR, or another formula, but if either
A1 or B1 is blank, I want "no value" in C1. If both A1 and B1 have
value then it returns the Value in C1.


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 73
Default Need correct IF(ISBLANK) formula when referencing whether one of t

Try this:

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

Good Luck.
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
Need formula like ISBLANK that returns "no value" even if there is aformula in referenced cell insitedge Excel Worksheet Functions 1 May 7th 08 01:27 PM
"If" statement returning blank gives downstream formula errors. Johnboy Excel Discussion (Misc queries) 2 February 26th 07 05:26 PM
Sumproduct formula "breaks" when referencing too many cells, why? hizzle Excel Discussion (Misc queries) 3 February 18th 06 11:07 PM
Leave cell data (IF(ISNA(VLOOKUP) is TRUE instead of returning blank (" ") or #NA [email protected] Excel Worksheet Functions 6 October 27th 05 04:02 PM
Changing "returned" values from "0" to "blank" LATATC Excel Worksheet Functions 2 October 20th 05 04:41 PM


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

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

About Us

"It's about Microsoft Excel"