Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
getmhawks
 
Posts: n/a
Default Trying to replace "false" in IF statement...


In this formula I cannot figure out how to keep "false" from coming up
when the statement is false. If it is not "OVERDUE", then I want the
cell to show nothing at all.

Here is the formula... =IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE",
""))

I did try this... =IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE", "NA"))
and it still came up "FALSE".

Everything works as far as I know but I don't want the row filled with
"false." Does anyone have any advice? Any help would be greatly
appreciated.

Andrew


--
getmhawks
------------------------------------------------------------------------
getmhawks's Profile: http://www.excelforum.com/member.php...o&userid=35242
View this thread: http://www.excelforum.com/showthread...hreadid=551139

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bernard Liengme
 
Posts: n/a
Default Trying to replace "false" in IF statement...

This formula is missing the false_value for the outer IF
=IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE",""))
so add one in
=IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE",""), "")
but why not
=IF(AND(TODAY()-B1230,ISBLANK(I12)),"OVERDUE","")
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"getmhawks" wrote
in message ...

In this formula I cannot figure out how to keep "false" from coming up
when the statement is false. If it is not "OVERDUE", then I want the
cell to show nothing at all.

Here is the formula... =IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE",
""))

I did try this... =IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE", "NA"))
and it still came up "FALSE".

Everything works as far as I know but I don't want the row filled with
"false." Does anyone have any advice? Any help would be greatly
appreciated.

Andrew


--
getmhawks
------------------------------------------------------------------------
getmhawks's Profile:
http://www.excelforum.com/member.php...o&userid=35242
View this thread: http://www.excelforum.com/showthread...hreadid=551139



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Arvi Laanemets
 
Posts: n/a
Default Trying to replace "false" in IF statement...

Hi

You havent'd determined the case TODAY()-B12<=30 - all such cases return
FALSE for your formula

=IF(AND(SUM(TODAY(),-B12)30,I12<""),"OVERDUE","")


Arvi Laanemets


"getmhawks" wrote
in message ...

In this formula I cannot figure out how to keep "false" from coming up
when the statement is false. If it is not "OVERDUE", then I want the
cell to show nothing at all.

Here is the formula... =IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE",
""))

I did try this... =IF(TODAY()-B1230,IF(ISBLANK(I12),"OVERDUE", "NA"))
and it still came up "FALSE".

Everything works as far as I know but I don't want the row filled with
"false." Does anyone have any advice? Any help would be greatly
appreciated.

Andrew


--
getmhawks
------------------------------------------------------------------------
getmhawks's Profile:

http://www.excelforum.com/member.php...o&userid=35242
View this thread: http://www.excelforum.com/showthread...hreadid=551139



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
getmhawks
 
Posts: n/a
Default Trying to replace "false" in IF statement...


Thanks guys. That works great! However, I realized that if C12 is blank
then I don't want "overdue" to pop up. Basically there are "overdues"
all the way down the part of the column that has not been filled out
yet. So what could I add into the function that would cause a blank
cell if another cell was empty.


So if Today()-b1230 and I12 is blank then it is "overdue". Unless C12
is blank, then the cell should come up empty(false). If neither of the
first two requiements are met then it should come up empty(false) as
well.

This is the formula I used from your help. How should I alter to it?
=IF(AND(SUM(TODAY()-B12)30,I12<""),"OVERDUE","")


--
getmhawks
------------------------------------------------------------------------
getmhawks's Profile: http://www.excelforum.com/member.php...o&userid=35242
View this thread: http://www.excelforum.com/showthread...hreadid=551139

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Mark Lincoln
 
Posts: n/a
Default Trying to replace "false" in IF statement...

Try this (not tested):

=IF(AND(SUM(TODAY()-B12)30,I12<"",C2<""),"OVERDUE","")

getmhawks wrote:
Thanks guys. That works great! However, I realized that if C12 is blank
then I don't want "overdue" to pop up. Basically there are "overdues"
all the way down the part of the column that has not been filled out
yet. So what could I add into the function that would cause a blank
cell if another cell was empty.


So if Today()-b1230 and I12 is blank then it is "overdue". Unless C12
is blank, then the cell should come up empty(false). If neither of the
first two requiements are met then it should come up empty(false) as
well.

This is the formula I used from your help. How should I alter to it?
=IF(AND(SUM(TODAY()-B12)30,I12<""),"OVERDUE","")


--
getmhawks
------------------------------------------------------------------------
getmhawks's Profile: http://www.excelforum.com/member.php...o&userid=35242
View this thread: http://www.excelforum.com/showthread...hreadid=551139


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
Can I create an If Statement that will replace text kalikw Excel Worksheet Functions 4 March 30th 06 02:34 AM
Remove the "False" from Statement Hardip Excel Worksheet Functions 4 March 28th 06 05:04 PM
How do I use an if statement with Find and Replace Gerald Excel Worksheet Functions 2 October 3rd 05 10:24 PM
Search and replace Subu Excel Worksheet Functions 4 June 9th 05 07:01 PM
Do I need a sumif or sum of a vlookup formula? PeterB Excel Worksheet Functions 0 June 1st 05 12:23 PM


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