Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default i am trying to say =if a2 is greater than 2000 add 250

i am a new excell user 2007 how do i get the formula to say if A@ is greater
than
2000 add 250
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,203
Default i am trying to say =if a2 is greater than 2000 add 250

Hopefully you don't want to do this in A2 itself because trying that will
give you a 'circular reference' error. But in another cell you can put:
=IF(A22000,A2+250,"not greater than 2000")

The "not greater than 2000" portion could be another formula, or reference
to a cell, such as
=IF(A22000,A2+250,A2)
would either show A2 + 250 or just the value in A2
=IF(A22000,A2+250,A3)
would show A2+250 result if A22000 otherwise would show value in A3
or
=IF(A22000,A2+250,"")
would show A2+250 result if A22000 otherwise would just be blank.

Hope this helps.
"slater" wrote:

i am a new excell user 2007 how do i get the formula to say if A@ is greater
than
2000 add 250

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 806
Default i am trying to say =if a2 is greater than 2000 add 250

=IF(A12000,A1+250,A1)
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 181
Default i am trying to say =if a2 is greater than 2000 add 250

Hi Slater,

Your description almost says it the way the formula goes although you have
not said what you want the 250 to be added to. I've assumed that you want it
to be added to the original figure in A2 so:

=IF(A22000,A2+250,A2)

That's saying If A2 is greater than 2000 then display A2 figure plus 250
otherwise just display A2 figure.

--
Russell Dawson
Excel Student

Please hit "Yes" if this post was helpful.


"slater" wrote:

i am a new excell user 2007 how do i get the formula to say if A@ is greater
than
2000 add 250

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default i am trying to say =if a2 is greater than 2000 add 250

.... or =A2+250*(A22000)
--
David Biddulph


"Russell Dawson" wrote in message
...
Hi Slater,

Your description almost says it the way the formula goes although you have
not said what you want the 250 to be added to. I've assumed that you want
it
to be added to the original figure in A2 so:

=IF(A22000,A2+250,A2)

That's saying If A2 is greater than 2000 then display A2 figure plus 250
otherwise just display A2 figure.

--
Russell Dawson
Excel Student

Please hit "Yes" if this post was helpful.


"slater" wrote:

i am a new excell user 2007 how do i get the formula to say if A@ is
greater
than
2000 add 250





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 89
Default i am trying to say =if a2 is greater than 2000 add 250

One more suggestion: With inflation you may want to "future proof" it:
Suggest use absolute ranges for criterion and add amount. Like this:

Name (say) C1 as something like "ChangeLevel"
Name (say) D6 as something like "AddAmount"
(Naming ranges simplifies the replicating of formulae across or down the page)

Write your formula as "=if(A2ChangeLevel,A2+AddAmount),A2)"

This allows you to update every row from just 1 or 2 cells. Remember tho
that it will do just that - EVERY row in which that formula appears!

If you are replicating the formula along the row to apply to several columns
(eg price break levels), using the $ sign (like A$2) will maintain the
connection to column A

Tip: Incorporating "=Max(xx,xx1)" and "=Min(xx,xx1)" (where xx and xx1 are
cells or ranges) can sometimes add a lot of power and functionality to "=IF"
formulae too.

"slater" wrote:

i am a new excell user 2007 how do i get the formula to say if A@ is greater
than
2000 add 250

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
Open 2000 file attachments in Excel 2000 Judy[_2_] Excel Discussion (Misc queries) 2 September 20th 07 10:20 PM
I cannot edit cell format in Excel 2000 (Part of office 2000)! Brett Excel Discussion (Misc queries) 1 April 12th 06 05:58 PM
Using Excel 2000 as Data source for Word 2000 document Malcolm Agingwell Excel Discussion (Misc queries) 2 June 21st 05 09:28 AM
Hyperlink in Excel 2000 can't open bookmarked Word 2000 file DCheslock Excel Discussion (Misc queries) 1 May 5th 05 10:46 PM
Excel Programs developed in Office 2000 on Windows 2000 Trooper Excel Discussion (Misc queries) 4 March 12th 05 11:09 PM


All times are GMT +1. The time now is 01:45 PM.

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"