PC Review


Reply
Thread Tools Rate Thread

Adding 3 variable formula to a cell

 
 
=?Utf-8?B?a3NzZmxtYWls?=
Guest
Posts: n/a
 
      20th Feb 2006
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 With Quote
 
 
 
 
Peo Sjoblom
Guest
Posts: n/a
 
      20th Feb 2006
One possible way

=IF(H1<=10,H1+10,IF(AND(H1>10,H1<=500),H1*1.3,H1*1.2))

--

Regards,

Peo Sjoblom

Northwest Excel Solutions

www.nwexcelsolutions.com

(remove ^^ from email address)

Portland, Oregon




"kssflmail" <(E-Mail Removed)> wrote in message
news:554B799D-60E4-443E-AE15-(E-Mail Removed)...
> 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 With Quote
 
=?Utf-8?B?a3NzZmxtYWls?=
Guest
Posts: n/a
 
      20th Feb 2006
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(H1>10,H1<=500),H1*1.3,H1*1.2))
>
> --
>
> Regards,
>
> Peo Sjoblom
>
> Northwest Excel Solutions
>
> www.nwexcelsolutions.com
>
> (remove ^^ from email address)
>
> Portland, Oregon
>
>
>
>
> "kssflmail" <(E-Mail Removed)> wrote in message
> news:554B799D-60E4-443E-AE15-(E-Mail Removed)...
> > 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 With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      20th Feb 2006
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" <(E-Mail Removed)> wrote in message
news:975C3AF0-23FB-4CC5-BFA3-(E-Mail Removed)...
> 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(H1>10,H1<=500),H1*1.3,H1*1.2))
>>
>> --
>>
>> Regards,
>>
>> Peo Sjoblom
>>
>> Northwest Excel Solutions
>>
>> www.nwexcelsolutions.com
>>
>> (remove ^^ from email address)
>>
>> Portland, Oregon
>>
>>
>>
>>
>> "kssflmail" <(E-Mail Removed)> wrote in message
>> news:554B799D-60E4-443E-AE15-(E-Mail Removed)...
>> > 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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding a Formula as a data variable in a pivot SanCarlosCyclist Microsoft Excel Discussion 5 29th Dec 2009 02:27 PM
Keeping Formula variable constant when adding new column Marissa Microsoft Excel Misc 1 5th Mar 2009 09:04 PM
Cell variable in formula =?Utf-8?B?VGltIGRlc2lzaW9uIHN1cHBvcnQ=?= Microsoft Excel Worksheet Functions 1 19th Oct 2006 02:49 PM
Adding the same cell in different worksheets. Can that cell be variable? ro Microsoft Excel Worksheet Functions 0 18th Aug 2005 06:31 AM
Formula For Adding Variable Number Of Cells Required :-) Microsoft Excel Discussion 5 23rd Jun 2004 09:00 PM


Features
 

Advertising
 

Newsgroups
 


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