Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is it possible? | Excel Worksheet Functions | |||
Formula Problem - interrupted by #VALUE! in other cells!? | Excel Worksheet Functions | |||
How do I set a cell value based on a formula in another cell? | Excel Discussion (Misc queries) | |||
Input cell reference is not valid (One Variable Data Table) | Excel Worksheet Functions | |||
inserting data from a row to a cell, when the row number is specified by a formula in a cell | New Users to Excel |