Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default IF with function as false return

I am creating a to do list in Excel 2003. I have 3 columns, A "Finished" with
x if complete; B "Due Date" with a date; C "Days to Go". I want the Days to
Go to read Done if there is an x in column A. I don't want to just delete the
completed tasks as I need a record of what I do.

I tried in C =IF(a4,"x", Done",=b4-TODAY())

The =B4-TODAY() works unless I want to factor in my status from A. Any
ideas? The Help says a formula can be the result for a FALSE return, but I
cannot find any examples. Of course I could just hide the completed tasks,
but that doesn't let me play with formulas.
--
Regards, Lyn
"Any sufficiently advanced technology is indistinguishable from magic." AC
Clark
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 694
Default IF with function as false return

Hi Lyn
Try this =IF(A4="x","Done",B4-TODAY())
HTH
John
"Lyn Sweetapple" wrote in message
...
I am creating a to do list in Excel 2003. I have 3 columns, A "Finished" with
x if complete; B "Due Date" with a date; C "Days to Go". I want the Days to
Go to read Done if there is an x in column A. I don't want to just delete the
completed tasks as I need a record of what I do.

I tried in C =IF(a4,"x", Done",=b4-TODAY())

The =B4-TODAY() works unless I want to factor in my status from A. Any
ideas? The Help says a formula can be the result for a FALSE return, but I
cannot find any examples. Of course I could just hide the completed tasks,
but that doesn't let me play with formulas.
--
Regards, Lyn
"Any sufficiently advanced technology is indistinguishable from magic." AC
Clark


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,240
Default IF with function as false return

Lyn Sweetapple wrote:
I am creating a to do list in Excel 2003. I have 3 columns, A "Finished" with
x if complete; B "Due Date" with a date; C "Days to Go". I want the Days to
Go to read Done if there is an x in column A. I don't want to just delete the
completed tasks as I need a record of what I do.

I tried in C =IF(a4,"x", Done",=b4-TODAY())

The =B4-TODAY() works unless I want to factor in my status from A. Any
ideas? The Help says a formula can be the result for a FALSE return, but I
cannot find any examples. Of course I could just hide the completed tasks,
but that doesn't let me play with formulas.



=IF(A4="X","DONE",B4-TODAY())

Pay attention to the syntax of the formula in the Help file.

IF( logical_test , value_if_true , value_if_false )
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default IF with function as false return

=IF(a4,"x", Done",=b4-TODAY())

Try it like this...

=IF(A4="x","Done",B4-TODAY())

--
Biff
Microsoft Excel MVP


"Lyn Sweetapple" wrote in message
...
I am creating a to do list in Excel 2003. I have 3 columns, A "Finished"
with
x if complete; B "Due Date" with a date; C "Days to Go". I want the Days
to
Go to read Done if there is an x in column A. I don't want to just delete
the
completed tasks as I need a record of what I do.

I tried in C =IF(a4,"x", Done",=b4-TODAY())

The =B4-TODAY() works unless I want to factor in my status from A. Any
ideas? The Help says a formula can be the result for a FALSE return, but I
cannot find any examples. Of course I could just hide the completed tasks,
but that doesn't let me play with formulas.
--
Regards, Lyn
"Any sufficiently advanced technology is indistinguishable from magic." AC
Clark



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,276
Default IF with function as false return

Hi,

=IF(a4="x", "Done",b4-TODAY())

"Lyn Sweetapple" wrote:

I am creating a to do list in Excel 2003. I have 3 columns, A "Finished" with
x if complete; B "Due Date" with a date; C "Days to Go". I want the Days to
Go to read Done if there is an x in column A. I don't want to just delete the
completed tasks as I need a record of what I do.

I tried in C =IF(a4,"x", Done",=b4-TODAY())

The =B4-TODAY() works unless I want to factor in my status from A. Any
ideas? The Help says a formula can be the result for a FALSE return, but I
cannot find any examples. Of course I could just hide the completed tasks,
but that doesn't let me play with formulas.
--
Regards, Lyn
"Any sufficiently advanced technology is indistinguishable from magic." AC
Clark

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
How to return a number instead of true/false with an if function? charles New Users to Excel 3 October 1st 09 07:50 AM
FIND function, when FALSE how can you return nothing (" ") instead of#VALUE or #NAME Simon[_2_] Excel Discussion (Misc queries) 1 September 24th 08 12:13 PM
IF function - need FALSE to return a blank cell, not 0 maestro Excel Worksheet Functions 1 February 4th 07 05:26 PM
LOOKUP and return the column heading for IF/THEN return for False NN Excel Discussion (Misc queries) 1 October 6th 06 11:24 AM
Function to return True/False if all are validated as True by ISNU Tetsuya Oguma Excel Worksheet Functions 2 March 15th 06 10:28 AM


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