#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default If Function

Is it possible to use an IF function to do the following

If cell C2 "is blank" then return the value in C3, if not then do nothing.
I guess my question is can "is blank" be used in an IF function.
  #3   Report Post  
Posted to microsoft.public.excel.misc
Max Max is offline
external usenet poster
 
Posts: 9,221
Default If Function

suemarie" wrote:
.. If cell C2 "is blank" then return the value in C3, if not then do nothing.


One way: =IF(C2="",C3,"")
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default If Function

Wow...I shoulda thought of that!!! Thanks

"Don Guillett" wrote:

""

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"suemarie" wrote in message
...
Is it possible to use an IF function to do the following

If cell C2 "is blank" then return the value in C3, if not then do nothing.
I guess my question is can "is blank" be used in an IF function.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,091
Default If Function

Just bear in mind that "" (the empty string) which appears as a blank, is
not the same as a blank meaning nothing at all in the cell. Functions such
as COUNTA and COUNTBLANK will count the empty string, but not a truly empty
cell, a blank.

Tyro

"suemarie" wrote in message
...
Is it possible to use an IF function to do the following

If cell C2 "is blank" then return the value in C3, if not then do nothing.
I guess my question is can "is blank" be used in an IF function.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,091
Default If Function

Correction: COUNTA counts cells with something in them and empty strings
(=""), COUNTBLANK counts truly empty cells and empty strings (=""). As
usual, I don't see my errors until after I have posted.

Tyro

"Tyro" wrote in message
...
Just bear in mind that "" (the empty string) which appears as a blank, is
not the same as a blank meaning nothing at all in the cell. Functions such
as COUNTA and COUNTBLANK will count the empty string, but not a truly
empty cell, a blank.

Tyro

"suemarie" wrote in message
...
Is it possible to use an IF function to do the following

If cell C2 "is blank" then return the value in C3, if not then do
nothing.
I guess my question is can "is blank" be used in an IF function.





  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default If Function

=IF(LEN(TRIM(C8))<1,1,2)

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"suemarie" wrote in message
...
Is it possible to use an IF function to do the following

If cell C2 "is blank" then return the value in C3, if not then do nothing.
I guess my question is can "is blank" be used in an IF function.


  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default If Function

=IF(ISBLANK(C2),C3,"")

"suemarie" wrote:

Is it possible to use an IF function to do the following

If cell C2 "is blank" then return the value in C3, if not then do nothing.
I guess my question is can "is blank" be used in an IF function.

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
copy of excel file not showing formulal/function in the function b oaallam Excel Discussion (Misc queries) 4 September 6th 07 01:20 PM
LINKEDRANGE function - a complement to the PULL function (for getting values from a closed workbook) [email protected] Excel Worksheet Functions 0 September 5th 06 03:44 PM
Offset function with nested match function not finding host ss. MKunert Excel Worksheet Functions 1 March 21st 06 10:46 PM
Emulate Index/Match combo function w/ VBA custom function Spencer Hutton Excel Worksheet Functions 2 May 2nd 05 05:26 PM
Nested IF Function, Date Comparing, and NetworkDays Function carl Excel Worksheet Functions 2 December 29th 04 09:57 PM


All times are GMT +1. The time now is 12:13 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"