A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Formulas



 
 
Thread Tools Display Modes
  #1  
Old February 14th, 2010, 08:05 PM posted to microsoft.public.excel.worksheet.functions
formulaconfusion
external usenet poster
 
Posts: 5
Default Formulas

How do I create a formula for this? Multiply the base value in cell B6 times
100% plus the value in cell C4. Place the second expression in parentheses so
that addition is performed first and make the reference to the value in C4
absolute so that this formula can be copied down column c.
  #2  
Old February 14th, 2010, 08:18 PM posted to microsoft.public.excel.worksheet.functions
Mike H
external usenet poster
 
Posts: 8,419
Default Formulas

Hi,

=B6*((100+$C$4)/100)

or

=B6*(1+$C$4/100)


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"formulaconfusion" wrote:

How do I create a formula for this? Multiply the base value in cell B6 times
100% plus the value in cell C4. Place the second expression in parentheses so
that addition is performed first and make the reference to the value in C4
absolute so that this formula can be copied down column c.

  #3  
Old February 14th, 2010, 08:26 PM posted to microsoft.public.excel.worksheet.functions
formulaconfusion
external usenet poster
 
Posts: 5
Default Formulas

I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out the formula to get the answer

"Mike H" wrote:

Hi,

=B6*((100+$C$4)/100)

or

=B6*(1+$C$4/100)


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"formulaconfusion" wrote:

How do I create a formula for this? Multiply the base value in cell B6 times
100% plus the value in cell C4. Place the second expression in parentheses so
that addition is performed first and make the reference to the value in C4
absolute so that this formula can be copied down column c.

  #4  
Old February 14th, 2010, 08:37 PM posted to microsoft.public.excel.worksheet.functions
Joe User[_2_]
external usenet poster
 
Posts: 757
Default Formulas

"formulaconfusion" wrote:
I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out
the formula to get the answer


=B6*(1+C4)

or

=B6 + B6*C4

Note: If you change the format to Number with 2 or more decimal places, you
will see that the actual result is 1,729,682.65. If that is undesirable, you
might want to round explicitly. For example:

=ROUND(B6*(1+C4),0)


----- original message -----

"formulaconfusion" wrote:

I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out the formula to get the answer

"Mike H" wrote:

Hi,

=B6*((100+$C$4)/100)

or

=B6*(1+$C$4/100)


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"formulaconfusion" wrote:

How do I create a formula for this? Multiply the base value in cell B6 times
100% plus the value in cell C4. Place the second expression in parentheses so
that addition is performed first and make the reference to the value in C4
absolute so that this formula can be copied down column c.

  #5  
Old February 14th, 2010, 08:41 PM posted to microsoft.public.excel.worksheet.functions
Joe User[_2_]
external usenet poster
 
Posts: 757
Default Formulas

I wrote:
=B6*(1+C4)
or
=B6 + B6*C4


Just saw this detail from the original posting: "make the reference to the
value in C4 absolute".

So change C4 to $C$4.


----- original message -----

"Joe User" wrote:
"formulaconfusion" wrote:
I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out
the formula to get the answer


=B6*(1+C4)

or

=B6 + B6*C4

Note: If you change the format to Number with 2 or more decimal places, you
will see that the actual result is 1,729,682.65. If that is undesirable, you
might want to round explicitly. For example:

=ROUND(B6*(1+C4),0)


----- original message -----

"formulaconfusion" wrote:

I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out the formula to get the answer

"Mike H" wrote:

Hi,

=B6*((100+$C$4)/100)

or

=B6*(1+$C$4/100)


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"formulaconfusion" wrote:

How do I create a formula for this? Multiply the base value in cell B6 times
100% plus the value in cell C4. Place the second expression in parentheses so
that addition is performed first and make the reference to the value in C4
absolute so that this formula can be copied down column c.

  #6  
Old February 14th, 2010, 08:47 PM posted to microsoft.public.excel.worksheet.functions
formulaconfusion
external usenet poster
 
Posts: 5
Default Formulas

Thank you so much. It worked and am on my way to completing the assignment.

"Joe User" wrote:

"formulaconfusion" wrote:
I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out
the formula to get the answer


=B6*(1+C4)

or

=B6 + B6*C4

Note: If you change the format to Number with 2 or more decimal places, you
will see that the actual result is 1,729,682.65. If that is undesirable, you
might want to round explicitly. For example:

=ROUND(B6*(1+C4),0)


----- original message -----

"formulaconfusion" wrote:

I am soooooo confused. This is what is in my textbook.
B6 is 1667164
C4 is 3.75%
the answer is 1,729,683 and I need to figure out the formula to get the answer

"Mike H" wrote:

Hi,

=B6*((100+$C$4)/100)

or

=B6*(1+$C$4/100)


--
Mike

When competing hypotheses are otherwise equal, adopt the hypothesis that
introduces the fewest assumptions while still sufficiently answering the
question.


"formulaconfusion" wrote:

How do I create a formula for this? Multiply the base value in cell B6 times
100% plus the value in cell C4. Place the second expression in parentheses so
that addition is performed first and make the reference to the value in C4
absolute so that this formula can be copied down column c.

 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 05:18 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.