#1   Report Post  
Posted to microsoft.public.excel.misc
jmo jmo is offline
external usenet poster
 
Posts: 4
Default IF Statement

Hi, i was wondering if you could help me figure out how to make this work.

Senario would be

I need to sum b4:b12, if that sum is greater then $100 then i need it to add
a 5% bouns to the dollar amount else just give me the sum.
--
Jeremy Morton
  #2   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default IF Statement

try this:

=if(sum(b4:b12)100, sum(b4:b12)*1.05,sum(b4:b12)
--
hope to help,
cm


"jmo" wrote:

Hi, i was wondering if you could help me figure out how to make this work.

Senario would be

I need to sum b4:b12, if that sum is greater then $100 then i need it to add
a 5% bouns to the dollar amount else just give me the sum.
--
Jeremy Morton

  #3   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default IF Statement

sorry I left of the ending parenthesis:

=if(sum(b4:b12)100, sum(b4:b12)*1.05,sum(b4:b12))
--
hope to help,
cm


"jmo" wrote:

Hi, i was wondering if you could help me figure out how to make this work.

Senario would be

I need to sum b4:b12, if that sum is greater then $100 then i need it to add
a 5% bouns to the dollar amount else just give me the sum.
--
Jeremy Morton

  #4   Report Post  
Posted to microsoft.public.excel.misc
jmo jmo is offline
external usenet poster
 
Posts: 4
Default IF Statement

perfect...thanks for the help...
--
Jeremy Morton


"cm" wrote:

try this:

=if(sum(b4:b12)100, sum(b4:b12)*1.05,sum(b4:b12)
--
hope to help,
cm


"jmo" wrote:

Hi, i was wondering if you could help me figure out how to make this work.

Senario would be

I need to sum b4:b12, if that sum is greater then $100 then i need it to add
a 5% bouns to the dollar amount else just give me the sum.
--
Jeremy Morton

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15,768
Default IF Statement

One way:

=IF(SUM(B4:B12)100,SUM(B4:B12)*1.05,SUM(B4:B12))

--
Biff
Microsoft Excel MVP


"jmo" wrote in message
...
Hi, i was wondering if you could help me figure out how to make this work.

Senario would be

I need to sum b4:b12, if that sum is greater then $100 then i need it to
add
a 5% bouns to the dollar amount else just give me the sum.
--
Jeremy Morton





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default IF Statement

=SUM(B4:B12)*(1+(SUM(B4:B12)100)*5%)
--
David Biddulph

"jmo" wrote in message
...
Hi, i was wondering if you could help me figure out how to make this work.

Senario would be

I need to sum b4:b12, if that sum is greater then $100 then i need it to
add
a 5% bouns to the dollar amount else just give me the sum.
--
Jeremy Morton



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
Embedding an OR statement in an IF statement efficiently Chatnoir11 Excel Discussion (Misc queries) 4 February 2nd 09 08:12 PM
If statement or lookup statement not sure Renegade40 Excel Worksheet Functions 2 January 18th 09 06:11 AM
SUMIF statement with AND statement Eric D Excel Discussion (Misc queries) 2 July 14th 08 07:24 PM
appending and IF statement to an existing IF statement spence Excel Worksheet Functions 1 February 28th 06 11:00 PM
Help please, IF statement/SUMIF statement Brad_A Excel Worksheet Functions 23 January 11th 05 02:24 PM


All times are GMT +1. The time now is 01:12 AM.

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"