Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 68
Default Formual to have Max $ amount

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help
  #2   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default Formual to have Max $ amount

try this:

=if((SUM(B6:G6)*(0.173))=711.03,711.03,(SUM(B6:G6 )*(0.173)))

--
hope to help,
cm


"Carrie" wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default Formual to have Max $ amount

How 'bout this argument that puts the text "OVER" if it is over 711.03:
=IF(SUM(B6:G6)*(0.173)711.03,"OVER",SUM(B6:G6)*(0 .173))

--
Regards


"Carrie" wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 68
Default Formual to have Max $ amount

I need to formula to show the calculation even if it doesn't = $711.03, but
if the calculation equals more than $711.03 I would like it to only show
$711.03 and no more.



"Brown Recluse" wrote:

How 'bout this argument that puts the text "OVER" if it is over 711.03:
=IF(SUM(B6:G6)*(0.173)711.03,"OVER",SUM(B6:G6)*(0 .173))

--
Regards


"Carrie" wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

  #5   Report Post  
Posted to microsoft.public.excel.misc
CM CM is offline
external usenet poster
 
Posts: 136
Default Formual to have Max $ amount

this will give you that result:

=if((SUM(B6:G6)*(0.173))=711.03,711.03,(SUM(B6:G6 )*(0.173)))


--
hope to help,
cm


"Carrie" wrote:

I need to formula to show the calculation even if it doesn't = $711.03, but
if the calculation equals more than $711.03 I would like it to only show
$711.03 and no more.



"Brown Recluse" wrote:

How 'bout this argument that puts the text "OVER" if it is over 711.03:
=IF(SUM(B6:G6)*(0.173)711.03,"OVER",SUM(B6:G6)*(0 .173))

--
Regards


"Carrie" wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 68
Default Formual to have Max $ amount

No, this still doesn't work.......................

"cm" wrote:

this will give you that result:

=if((SUM(B6:G6)*(0.173))=711.03,711.03,(SUM(B6:G6 )*(0.173)))


--
hope to help,
cm


"Carrie" wrote:

I need to formula to show the calculation even if it doesn't = $711.03, but
if the calculation equals more than $711.03 I would like it to only show
$711.03 and no more.



"Brown Recluse" wrote:

How 'bout this argument that puts the text "OVER" if it is over 711.03:
=IF(SUM(B6:G6)*(0.173)711.03,"OVER",SUM(B6:G6)*(0 .173))

--
Regards


"Carrie" wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 68
Default Formual to have Max $ amount

I would like the result to show even if it only equals $12 but the max amount
I want it to show is $711.03 - even if it equals more.

"Carrie" wrote:

No, this still doesn't work.......................

"cm" wrote:

this will give you that result:

=if((SUM(B6:G6)*(0.173))=711.03,711.03,(SUM(B6:G6 )*(0.173)))


--
hope to help,
cm


"Carrie" wrote:

I need to formula to show the calculation even if it doesn't = $711.03, but
if the calculation equals more than $711.03 I would like it to only show
$711.03 and no more.



"Brown Recluse" wrote:

How 'bout this argument that puts the text "OVER" if it is over 711.03:
=IF(SUM(B6:G6)*(0.173)711.03,"OVER",SUM(B6:G6)*(0 .173))

--
Regards


"Carrie" wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Formual to have Max $ amount

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help


  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 68
Default Formual to have Max $ amount

Still doesn't work, the calculation is coming up as 711.03 when it should be
121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help


.

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default Formual to have Max $ amount

Then your data is bad. What does sum(b6:g6) equal?

Regards,
Fred.

"Carrie" wrote in message
...
Still doesn't work, the calculation is coming up as 711.03 when it should
be
121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help


.




  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Formual to have Max $ amount

Works for me.

Enter 200 in each of cells B6:G6

What do you get returned from the formula?

I get 207.6

Enter 1000 in each of those cells.

I get 711.03..........without the MIN I get 1038

Could be your original data is incorrect.


Gord


On Fri, 23 Oct 2009 15:20:01 -0700, Carrie
wrote:

Still doesn't work, the calculation is coming up as 711.03 when it should be
121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help


.


  #12   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 68
Default Formual to have Max $ amount

Not sure what you mean by bad data.

The sum for the 3 lines are as following

2,623.50(b), 60.75 (c), 40(f) = 2724.25 (there's 2 blank colums inbetween)

I selected all the colums for accounting format. I have Excel 2007

Help!!

"Gord Dibben" wrote:

Works for me.

Enter 200 in each of cells B6:G6

What do you get returned from the formula?

I get 207.6

Enter 1000 in each of those cells.

I get 711.03..........without the MIN I get 1038

Could be your original data is incorrect.


Gord


On Fri, 23 Oct 2009 15:20:01 -0700, Carrie
wrote:

Still doesn't work, the calculation is coming up as 711.03 when it should be
121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

.


.

  #13   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Formual to have Max $ amount

Well, Carrie, I don't know where you get your 121.12 as an expected value,
nor do I know how those input figures gave you 711.03.

=SUM(B6:G6)*0.173 gives 471.2953

Would you like to explain what arithmetic gives 121.12 and would you like
you check again your formula and your input data?
--
David Biddulph

Carrie wrote:
Not sure what you mean by bad data.

The sum for the 3 lines are as following

2,623.50(b), 60.75 (c), 40(f) = 2724.25 (there's 2 blank colums
inbetween)

I selected all the colums for accounting format. I have Excel 2007

Help!!

"Gord Dibben" wrote:

Works for me.

Enter 200 in each of cells B6:G6

What do you get returned from the formula?

I get 207.6

Enter 1000 in each of those cells.

I get 711.03..........without the MIN I get 1038

Could be your original data is incorrect.


Gord


On Fri, 23 Oct 2009 15:20:01 -0700, Carrie
wrote:

Still doesn't work, the calculation is coming up as 711.03 when it
should be 121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

.


.



  #14   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Formual to have Max $ amount

Well, Carrie, I don't know where you get your 121.12 as an expected value,
nor do I know how those input figures gave you 711.03.

=SUM(B6:G6)*0.173 gives 471.2953

Would you like to explain what arithmetic gives 121.12 and would you like
you check again your formula and your input data?
--
David Biddulph

Carrie wrote:
Not sure what you mean by bad data.

The sum for the 3 lines are as following

2,623.50(b), 60.75 (c), 40(f) = 2724.25 (there's 2 blank colums
inbetween)

I selected all the colums for accounting format. I have Excel 2007

Help!!

"Gord Dibben" wrote:

Works for me.

Enter 200 in each of cells B6:G6

What do you get returned from the formula?

I get 207.6

Enter 1000 in each of those cells.

I get 711.03..........without the MIN I get 1038

Could be your original data is incorrect.


Gord


On Fri, 23 Oct 2009 15:20:01 -0700, Carrie
wrote:

Still doesn't work, the calculation is coming up as 711.03 when it
should be 121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

Help

.


.




  #15   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Formual to have Max $ amount

Assuming your numbers are in B6, C6, and F6

In H6 enter.........

=SUM(B6:G6) returns 2724.25

=SUM(B6:G6)*0.173 returns 471.2953

=SUM(MIN(B6:G6)*(0.173),711.3) returns 471.2953


Gord


On Mon, 26 Oct 2009 13:23:01 -0700, Carrie
wrote:

Not sure what you mean by bad data.

The sum for the 3 lines are as following

2,623.50(b), 60.75 (c), 40(f) = 2724.25 (there's 2 blank colums inbetween)

I selected all the colums for accounting format. I have Excel 2007

Help!!

"Gord Dibben" wrote:

Works for me.

Enter 200 in each of cells B6:G6

What do you get returned from the formula?

I get 207.6

Enter 1000 in each of those cells.

I get 711.03..........without the MIN I get 1038

Could be your original data is incorrect.


Gord


On Fri, 23 Oct 2009 15:20:01 -0700, Carrie
wrote:

Still doesn't work, the calculation is coming up as 711.03 when it should be
121.12

"Gord Dibben" wrote:

=MIN(SUM(B6:G6)*(0.173),711.3)


Gord Dibben MS Excel MVP

On Fri, 23 Oct 2009 13:44:10 -0700, Carrie
wrote:

Good Afternoon,

Currently I have this formula:

=SUM(B6:G6)*(0.173)

But I don't want the caluculation to exceed $711.03

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
How to change amount in figure to amount in words? Lotis Excel Worksheet Functions 3 June 27th 07 04:34 AM
how to convert the amount in currency into the amount in words? Ken Excel Discussion (Misc queries) 1 November 7th 06 09:16 AM
Formula for amount owing subtract amount paid Taperchart Excel Worksheet Functions 1 June 4th 06 05:51 PM
How can I calculate amount of time left based on amount spent? KLD Excel Worksheet Functions 3 May 23rd 06 04:20 PM
Converting amount in figures to amount in words Shrikant Excel Discussion (Misc queries) 1 August 16th 05 10:42 AM


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