#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 905
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 905
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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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.

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
E2007 formulas display as formulas, not results Pierre Excel Worksheet Functions 3 January 14th 10 04:59 PM
Counting # of Formulas in a column with formulas and entered data Brand Excel Worksheet Functions 1 October 10th 09 01:01 PM
CELLS NOT CALC FORMULAS - VALUES STAY SME FORMULAS CORRECT?? HELP Sherberg Excel Worksheet Functions 4 September 11th 07 01:34 AM
Formulas not evaluated, Formulas treated as strings Bob Sullentrup Excel Discussion (Misc queries) 0 November 27th 06 08:01 PM
formulas for changing formulas? creativeops Excel Discussion (Misc queries) 4 January 26th 06 03:07 AM


All times are GMT +1. The time now is 07:58 AM.

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"