Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
kssflmail
 
Posts: n/a
Default Adding 3 variable formula to a cell

I'm looking for a 3 variable formula for a single cell using figures from 8
cells in a column for Exel 2003. Basically, totalling variable fees for 8
different cells. If for example H1 is under (<) $10.00, then add 10.00 to the
total. If H1 is over () 10.01 then multiply that figure by 30% and add that
figure to total. If H1 is over 500.00 then multiply that figure by 20%.
Having all cells figures added to one cell based on previous mention variables

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default Adding 3 variable formula to a cell

One possible way

=IF(H1<=10,H1+10,IF(AND(H110,H1<=500),H1*1.3,H1*1 .2))

--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"kssflmail" wrote in message
...
I'm looking for a 3 variable formula for a single cell using figures from
8
cells in a column for Exel 2003. Basically, totalling variable fees for 8
different cells. If for example H1 is under (<) $10.00, then add 10.00 to
the
total. If H1 is over () 10.01 then multiply that figure by 30% and add
that
figure to total. If H1 is over 500.00 then multiply that figure by 20%.
Having all cells figures added to one cell based on previous mention
variables


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
kssflmail
 
Posts: n/a
Default Adding 3 variable formula to a cell

Hi Peo,
Thank you for your response and help but that didn't work. I worked out an
example of what I'm working with calculating cells starting with H24 through
H31.


figure 1 35.00 (x30%=10.50) H24
figure 2 38.99 (x30%=11.69 H25
figure 3 10.00 (10.00) H26
figure 4 400.00 (x30%=120.00) H27
figure 5 8.00 (10.00) H28
figure 6 634.00 (x20%=126.80) H29
figure 7 0.00 (10.00) H30
figure 8 0.00 (10.00) H31

SubTotal 1125.99
Misc Fee 23.51
--- **.** [Cell To Be Calculated From Figures Above = 308.99]
Other Fee 24.70
Total $1483.19

Thank You,
Kssflmail

--------------------------------------------------------




"Peo Sjoblom" wrote:

One possible way

=IF(H1<=10,H1+10,IF(AND(H110,H1<=500),H1*1.3,H1*1 .2))

--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"kssflmail" wrote in message
...
I'm looking for a 3 variable formula for a single cell using figures from
8
cells in a column for Exel 2003. Basically, totalling variable fees for 8
different cells. If for example H1 is under (<) $10.00, then add 10.00 to
the
total. If H1 is over () 10.01 then multiply that figure by 30% and add
that
figure to total. If H1 is over 500.00 then multiply that figure by 20%.
Having all cells figures added to one cell based on previous mention
variables



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Peo Sjoblom
 
Posts: n/a
Default Adding 3 variable formula to a cell

One way

=SUMPRODUCT(--(H24:H31),(LOOKUP(H24:H31,{0;10.01;500.01},{0;0.3; 0.2})))+SUMPRODUCT(--(H24:H31<=10),{10;10;10;10;10;10;10;10})

will return 308.997



--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"kssflmail" wrote in message
...
Hi Peo,
Thank you for your response and help but that didn't work. I worked out
an
example of what I'm working with calculating cells starting with H24
through
H31.


figure 1 35.00 (x30%=10.50) H24
figure 2 38.99 (x30%=11.69 H25
figure 3 10.00 (10.00) H26
figure 4 400.00 (x30%=120.00) H27
figure 5 8.00 (10.00) H28
figure 6 634.00 (x20%=126.80) H29
figure 7 0.00 (10.00) H30
figure 8 0.00 (10.00) H31

SubTotal 1125.99
Misc Fee 23.51
--- **.** [Cell To Be Calculated From Figures Above = 308.99]
Other Fee 24.70
Total $1483.19

Thank You,
Kssflmail

--------------------------------------------------------




"Peo Sjoblom" wrote:

One possible way

=IF(H1<=10,H1+10,IF(AND(H110,H1<=500),H1*1.3,H1*1 .2))

--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"kssflmail" wrote in message
...
I'm looking for a 3 variable formula for a single cell using figures
from
8
cells in a column for Exel 2003. Basically, totalling variable fees for
8
different cells. If for example H1 is under (<) $10.00, then add 10.00
to
the
total. If H1 is over () 10.01 then multiply that figure by 30% and add
that
figure to total. If H1 is over 500.00 then multiply that figure by 20%.
Having all cells figures added to one cell based on previous mention
variables




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
Is it possible? DakotaNJ Excel Worksheet Functions 25 September 18th 06 09:30 PM
Formula Problem - interrupted by #VALUE! in other cells!? Ted Excel Worksheet Functions 17 November 25th 05 05:18 PM
How do I set a cell value based on a formula in another cell? dingy101 Excel Discussion (Misc queries) 1 November 21st 05 08:51 AM
Input cell reference is not valid (One Variable Data Table) Dottore Excel Worksheet Functions 9 September 1st 05 03:05 PM
inserting data from a row to a cell, when the row number is specified by a formula in a cell [email protected] New Users to Excel 2 January 6th 05 07:18 AM


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