Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 12
Default sum a cell value over 75

Please help!!
Excel beginner! I need to build a formula that will add any remaining value
over 75 in a cell.

For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.

Thanks in advance for everyone's help!!
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default sum a cell value over 75

For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.


Perhaps, as a start .. try in A2: =IF(A175,1.5,"")
A2 will return 1.5 if A1 contains a number exceeding 75, otherwise A2 will
just appear empty ("") -- this is an assumed return which is not specified
above (you didn't say what you want in A2 if A1 doesn't contain a number
exceeding 75).
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Beginner" wrote:
Please help!!
Excel beginner! I need to build a formula that will add any remaining value
over 75 in a cell.

For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.

Thanks in advance for everyone's help!!

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 605
Default sum a cell value over 75

Max,

My interpretation is very different but then I have been wrong before. ;)

I think 1.5 is a variable i.e. it will change with A1. In this example, the difference between 76.5 and 75 is 1.5. So, my formula in A2 will be =A1-75. If A1 is <75, A2 will have a negative number.

Will stay tuned.

Epinn

"Max" wrote in message ...
For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.


Perhaps, as a start .. try in A2: =IF(A175,1.5,"")
A2 will return 1.5 if A1 contains a number exceeding 75, otherwise A2 will
just appear empty ("") -- this is an assumed return which is not specified
above (you didn't say what you want in A2 if A1 doesn't contain a number
exceeding 75).
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Beginner" wrote:
Please help!!
Excel beginner! I need to build a formula that will add any remaining value
over 75 in a cell.

For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.

Thanks in advance for everyone's help!!


  #4   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default sum a cell value over 75

Perhaps a good point, was blind to this relation earlier <g:
I think 1.5 is a variable i.e. it will change with A1.
In this example, the difference between 76.5 and 75 is 1.5.


In that case, my revised hunch for the OP would be
to try instead in A2: =IF(A175,A1-75,A1)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Epinn" wrote:
Max,

My interpretation is very different but then I have been wrong before. ;)

I think 1.5 is a variable i.e. it will change with A1. In this example, the difference between 76.5 and 75 is 1.5. So, my formula in A2 will be =A1-75. If A1 is <75, A2 will have a negative number.

Will stay tuned.

Epinn

  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 10,593
Default sum a cell value over 75

Maybe

=MAX(A1-75,0)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Beginner" wrote in message
...
Please help!!
Excel beginner! I need to build a formula that will add any remaining

value
over 75 in a cell.

For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.

Thanks in advance for everyone's help!!





  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 605
Default sum a cell value over 75

This has turned out to be a guessing game. :)

A couple of phrases from the request caught my eyes:

"...add any remaining value over 75..." and "...sum anything over 75..."

So, I think Bob's formula should take care of this. If it is a negative number, make it zero. This is great. Bob, I didn't know that I could use MAX( ) this way. The MS Excel Help didn't seem to talk about this. Wish there is BP Excel Help as well when I press F1. <bg Thank you, Bob. I can always learn something from you, be it something as complicated as SUMPRODUCT ( ) or something as simple as MAX ( ).

Have a good weekend.

Epinn

"Max" wrote in message ...
Perhaps a good point, was blind to this relation earlier <g:
I think 1.5 is a variable i.e. it will change with A1.
In this example, the difference between 76.5 and 75 is 1.5.


In that case, my revised hunch for the OP would be
to try instead in A2: =IF(A175,A1-75,A1)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Epinn" wrote:
Max,

My interpretation is very different but then I have been wrong before. ;)

I think 1.5 is a variable i.e. it will change with A1. In this example, the difference between 76.5 and 75 is 1.5. So, my formula in A2 will be =A1-75. If A1 is <75, A2 will have a negative number.

Will stay tuned.

Epinn


  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 12
Default sum a cell value over 75

This worked perfectly!!

Thanks Max and Epinn for the help also!!

Yes the 1.5 is a variable and will change depending on the number of hours.


"Bob Phillips" wrote:

Maybe

=MAX(A1-75,0)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Beginner" wrote in message
...
Please help!!
Excel beginner! I need to build a formula that will add any remaining

value
over 75 in a cell.

For example:
In cell A1 = 76.5
In cell A2 - I need a formula that will sum anything over 75 and enter 1.5
into cell A2.

Thanks in advance for everyone's help!!




  #8   Report Post  
Posted to microsoft.public.excel.newusers
Max Max is offline
external usenet poster
 
Posts: 9,221
Default sum a cell value over 75

It's good that you did feedback further (Thanks for that!), otherwise guess
we'll never know what was it that you really wanted <g.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Beginner" wrote in message
...
This worked perfectly!!

Thanks Max and Epinn for the help also!!

Yes the 1.5 is a variable and will change depending on the number of
hours.



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
Compiling macro based on cell values simonsmith Excel Discussion (Misc queries) 1 May 16th 06 08:31 PM
Instead of a negative number, I'd like to show zero... Dr. Darrell Excel Worksheet Functions 6 December 7th 05 08:21 PM
Cell color based upon cell value My View Excel Discussion (Misc queries) 11 July 6th 05 03:59 AM
cell color index comparison MINAL ZUNKE New Users to Excel 1 June 30th 05 07:11 AM
up to 7 functions? ALex Excel Worksheet Functions 10 April 12th 05 06:42 PM


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