Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 132
Default Nested IF Functions

All three cells listed in the formula below are dates. If there is data in
cell R9, that cell should be calculated as below. If 01/00/00 is listed in
R9, the formula should calculate R4 in the same manner. I have started with
the following formula, but obviously have not incorporated in R4. Can anyone
help?

=IF($R$9-A73500,0,IF($R$9-A73<=0,0,IF($R$9-A730,SUM($R$9-A73))))

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Nested IF Functions

Your formula makes no sense to me. What is 01/00/00? The first of 00 of
year 00? You refer to "three cells" yet you show only two $R$9 and A73 in
your formula.
R4 is dependent on R9 and its 01/00/00. Please explain in simple English
what you're trying to accomplish. Your formula appears to be saying that if
the difference in days is greater than 500, 0 is the answer, and if not, if
the difference in days is zero or negative, then 0 is the answer, then if
not, if the difference in days is greater than 0, "SUM($R$9-A73)" which
could be simply expressed as $R$9-A73. There is nothing to SUM. Your
formula can be reduced to =IF(OR($R$9-A73500,$R$9-A73<=0),0,$R$9-A73)

Tyro

"Kelly" wrote in message
...
All three cells listed in the formula below are dates. If there is data
in
cell R9, that cell should be calculated as below. If 01/00/00 is listed
in
R9, the formula should calculate R4 in the same manner. I have started
with
the following formula, but obviously have not incorporated in R4. Can
anyone
help?

=IF($R$9-A73500,0,IF($R$9-A73<=0,0,IF($R$9-A730,SUM($R$9-A73))))



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 132
Default Nested IF Functions

the 01/00/00 is a blank date (R9); it is linked to another another
spreadsheet and waiting for an actual date to be entered once a deal is
closed. The third cell is R4. R4 is a "Current Through" date and R9 is an
"Acceptance" Date. There are many times when the Acceptance Date (R9) is not
included when I am processing commissions so I need to use the Current
Through Date (R4) to run the calculation. In my formula below I am only able
to use the Acceptance Date. Hopefully that makes more sense.


"Tyro" wrote:

Your formula makes no sense to me. What is 01/00/00? The first of 00 of
year 00? You refer to "three cells" yet you show only two $R$9 and A73 in
your formula.
R4 is dependent on R9 and its 01/00/00. Please explain in simple English
what you're trying to accomplish. Your formula appears to be saying that if
the difference in days is greater than 500, 0 is the answer, and if not, if
the difference in days is zero or negative, then 0 is the answer, then if
not, if the difference in days is greater than 0, "SUM($R$9-A73)" which
could be simply expressed as $R$9-A73. There is nothing to SUM. Your
formula can be reduced to =IF(OR($R$9-A73500,$R$9-A73<=0),0,$R$9-A73)

Tyro

"Kelly" wrote in message
...
All three cells listed in the formula below are dates. If there is data
in
cell R9, that cell should be calculated as below. If 01/00/00 is listed
in
R9, the formula should calculate R4 in the same manner. I have started
with
the following formula, but obviously have not incorporated in R4. Can
anyone
help?

=IF($R$9-A73500,0,IF($R$9-A73<=0,0,IF($R$9-A730,SUM($R$9-A73))))




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,091
Default Nested IF Functions

Is 01/00/00 an Excel date or text? Blank dates are usually just blank cells
which are interpreted as 0, Jan 0, 1900

Tyro

"Kelly" wrote in message
...
the 01/00/00 is a blank date (R9); it is linked to another another
spreadsheet and waiting for an actual date to be entered once a deal is
closed. The third cell is R4. R4 is a "Current Through" date and R9 is
an
"Acceptance" Date. There are many times when the Acceptance Date (R9) is
not
included when I am processing commissions so I need to use the Current
Through Date (R4) to run the calculation. In my formula below I am only
able
to use the Acceptance Date. Hopefully that makes more sense.


"Tyro" wrote:

Your formula makes no sense to me. What is 01/00/00? The first of 00 of
year 00? You refer to "three cells" yet you show only two $R$9 and A73 in
your formula.
R4 is dependent on R9 and its 01/00/00. Please explain in simple English
what you're trying to accomplish. Your formula appears to be saying that
if
the difference in days is greater than 500, 0 is the answer, and if not,
if
the difference in days is zero or negative, then 0 is the answer, then if
not, if the difference in days is greater than 0, "SUM($R$9-A73)" which
could be simply expressed as $R$9-A73. There is nothing to SUM. Your
formula can be reduced to =IF(OR($R$9-A73500,$R$9-A73<=0),0,$R$9-A73)

Tyro

"Kelly" wrote in message
...
All three cells listed in the formula below are dates. If there is
data
in
cell R9, that cell should be calculated as below. If 01/00/00 is
listed
in
R9, the formula should calculate R4 in the same manner. I have started
with
the following formula, but obviously have not incorporated in R4. Can
anyone
help?

=IF($R$9-A73500,0,IF($R$9-A73<=0,0,IF($R$9-A730,SUM($R$9-A73))))






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 132
Default Nested IF Functions

The date is coming from "B" spreadsheet, which someone hand typed in as
01/00/00 and formatted as a date. When I look at the cell where the date is
(spreadsheet "A"), it is a link to the "B" spreadsheet and has been formatted
as a date.

"Tyro" wrote:

Is 01/00/00 an Excel date or text? Blank dates are usually just blank cells
which are interpreted as 0, Jan 0, 1900

Tyro

"Kelly" wrote in message
...
the 01/00/00 is a blank date (R9); it is linked to another another
spreadsheet and waiting for an actual date to be entered once a deal is
closed. The third cell is R4. R4 is a "Current Through" date and R9 is
an
"Acceptance" Date. There are many times when the Acceptance Date (R9) is
not
included when I am processing commissions so I need to use the Current
Through Date (R4) to run the calculation. In my formula below I am only
able
to use the Acceptance Date. Hopefully that makes more sense.


"Tyro" wrote:

Your formula makes no sense to me. What is 01/00/00? The first of 00 of
year 00? You refer to "three cells" yet you show only two $R$9 and A73 in
your formula.
R4 is dependent on R9 and its 01/00/00. Please explain in simple English
what you're trying to accomplish. Your formula appears to be saying that
if
the difference in days is greater than 500, 0 is the answer, and if not,
if
the difference in days is zero or negative, then 0 is the answer, then if
not, if the difference in days is greater than 0, "SUM($R$9-A73)" which
could be simply expressed as $R$9-A73. There is nothing to SUM. Your
formula can be reduced to =IF(OR($R$9-A73500,$R$9-A73<=0),0,$R$9-A73)

Tyro

"Kelly" wrote in message
...
All three cells listed in the formula below are dates. If there is
data
in
cell R9, that cell should be calculated as below. If 01/00/00 is
listed
in
R9, the formula should calculate R4 in the same manner. I have started
with
the following formula, but obviously have not incorporated in R4. Can
anyone
help?

=IF($R$9-A73500,0,IF($R$9-A73<=0,0,IF($R$9-A730,SUM($R$9-A73))))







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
Nested functions Joyce Excel Discussion (Misc queries) 4 January 18th 08 07:04 PM
too many nested IF functions Amanda Excel Worksheet Functions 5 October 6th 06 03:02 PM
Nested functions HELP! chiefnmd Excel Worksheet Functions 7 August 25th 05 05:20 AM
nested if(and) functions Rohan Excel Discussion (Misc queries) 3 August 12th 05 01:30 AM
Nested Functions Steve Almond Excel Worksheet Functions 2 June 14th 05 03:22 PM


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