Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 20
Default If Then with Today formula

I am trying to subtract one date from another using the Today() formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 225
Default If Then with Today formula

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today() formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 20
Default If Then with Today formula

Perhaps I am being dense but it isn't working. Here is a sample of what I
have
A1 B1 C1
3/21/2009 Request Date Days in Processing
1/1/2008 445
3/21/09 is Today() and the result is 445. If it is under 200 I want it to
display the value, but if over 200 I need it to show zero.

I appreciate the help

"Sheeloo" wrote:

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today() formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 225
Default If Then with Today formula

If 1/1/2008 is in A1 and you want the result in B1 then enter this in B1
=IF((Today()-A1)<200,Today()-A1,0)

I had left out the () around the condition..

"JimG" wrote:

Perhaps I am being dense but it isn't working. Here is a sample of what I
have
A1 B1 C1
3/21/2009 Request Date Days in Processing
1/1/2008 445
3/21/09 is Today() and the result is 445. If it is under 200 I want it to
display the value, but if over 200 I need it to show zero.

I appreciate the help

"Sheeloo" wrote:

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today() formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9,101
Default If Then with Today formula

Does this work?

=IF(A1-B2250,A1-B2,0)

Make sure the cell address are right. Sheelo used Today. I simply replaced
Today with the cell B2.

"JimG" wrote:

Perhaps I am being dense but it isn't working. Here is a sample of what I
have
A1 B1 C1
3/21/2009 Request Date Days in Processing
1/1/2008 445
3/21/09 is Today() and the result is 445. If it is under 200 I want it to
display the value, but if over 200 I need it to show zero.

I appreciate the help

"Sheeloo" wrote:

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today() formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default If Then with Today formula

If it is under 200 I want it to display the value,
but if over 200 I need it to show zero.


What if the difference *is* 200?

Try this:

A1 = today

=(B1-A1)*(B1-A1<200)

--
Biff
Microsoft Excel MVP


"JimG" wrote in message
...
Perhaps I am being dense but it isn't working. Here is a sample of what I
have
A1 B1 C1
3/21/2009 Request Date Days in Processing
1/1/2008 445
3/21/09 is Today() and the result is 445. If it is under 200 I want it to
display the value, but if over 200 I need it to show zero.

I appreciate the help

"Sheeloo" wrote:

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today()
formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,346
Default If Then with Today formula

Based on the OP's data layout, they can use either

=(A1-B1<200)*(A1-B1)
or
=IF(A1-B1200,0,A1-B1)

but if you really want to be cute then in C1 enter
=A1-B1
and then apply the following custom format to C1
[200]"0"

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"T. Valko" wrote:

If it is under 200 I want it to display the value,
but if over 200 I need it to show zero.


What if the difference *is* 200?

Try this:

A1 = today

=(B1-A1)*(B1-A1<200)

--
Biff
Microsoft Excel MVP


"JimG" wrote in message
...
Perhaps I am being dense but it isn't working. Here is a sample of what I
have
A1 B1 C1
3/21/2009 Request Date Days in Processing
1/1/2008 445
3/21/09 is Today() and the result is 445. If it is under 200 I want it to
display the value, but if over 200 I need it to show zero.

I appreciate the help

"Sheeloo" wrote:

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today()
formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?




  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 20
Default If Then with Today formula

PERFECT!!! Thanks to everyone for the help!

"T. Valko" wrote:

If it is under 200 I want it to display the value,
but if over 200 I need it to show zero.


What if the difference *is* 200?

Try this:

A1 = today

=(B1-A1)*(B1-A1<200)

--
Biff
Microsoft Excel MVP


"JimG" wrote in message
...
Perhaps I am being dense but it isn't working. Here is a sample of what I
have
A1 B1 C1
3/21/2009 Request Date Days in Processing
1/1/2008 445
3/21/09 is Today() and the result is 445. If it is under 200 I want it to
display the value, but if over 200 I need it to show zero.

I appreciate the help

"Sheeloo" wrote:

=IF(A1-Today()250,A1-Today(),0)

with date in A1...

You can change the comparison according to your logic.

"JimG" wrote:

I am trying to subtract one date from another using the Today()
formula, but
if the value is greater than 250 I want to return the value of 0.

Can someone help?




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
If statement containing today formula Christi Excel Worksheet Functions 8 September 25th 08 01:22 PM
TODAY formula sed Excel Discussion (Misc queries) 2 June 19th 08 06:00 PM
Using today formula for a template Mike Busch Excel Discussion (Misc queries) 3 August 8th 05 01:44 PM
=IF(OR(TODAY()G9),"Pass","Overdue") Why doe it not wo. Fkor Excel Discussion (Misc queries) 3 March 10th 05 08:29 AM
formula - Age today Althea Excel Worksheet Functions 2 January 27th 05 08:15 AM


All times are GMT +1. The time now is 09:03 AM.

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

About Us

"It's about Microsoft Excel"