Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 6
Default Increase by % Formula

Hello,

I have a row of #'s, in the row below I would like to increase each cell's
number by 3.5%, in the next row 4%, etc. What is the formula?

Example of what I'm doing:
In Cell A1 is 60,000
In Cell B1 I put the following formula: =A1*3.5%
(Answer comes out to 2,100, which is correct, but then I want ithe answer to
be 62,100 - it's not adding the 2,100 to the 6,000 for the answer). Please
help!

Thank you.
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 83
Default Increase by % Formula

"Trying Hard" wrote in message
...
Hello,

I have a row of #'s, in the row below I would like to increase each cell's
number by 3.5%, in the next row 4%, etc. What is the formula?

Example of what I'm doing:
In Cell A1 is 60,000
In Cell B1 I put the following formula: =A1*3.5%
(Answer comes out to 2,100, which is correct, but then I want ithe answer
to
be 62,100 - it's not adding the 2,100 to the 6,000 for the answer).
Please
help!

Thank you.



Two methods:
B1=A1*103.5 or
B1=A1+(A1*3.5%)

  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 189
Default Increase by % Formula

Try this
=A1+(A1*3.5%)
--
Thanks
Suleman Peerzade


"Trying Hard" wrote:

Hello,

I have a row of #'s, in the row below I would like to increase each cell's
number by 3.5%, in the next row 4%, etc. What is the formula?

Example of what I'm doing:
In Cell A1 is 60,000
In Cell B1 I put the following formula: =A1*3.5%
(Answer comes out to 2,100, which is correct, but then I want ithe answer to
be 62,100 - it's not adding the 2,100 to the 6,000 for the answer). Please
help!

Thank you.

  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 258
Default Increase by % Formula

Slight correction to your first formula:

B1 = A1*1.035

Also, you might consider putting the percentage increases in separate cells.
If the 3.5% figure were in G1, then

B1 = A1*(1+$g$1)

This has two advantages. First -- it's easier for someone else (or even
you) to see what's going on. Second, it's easier to change your assumptions
and watch what's happening.

HTH

"Gordon" wrote:

"Trying Hard" wrote in message
...
Hello,

I have a row of #'s, in the row below I would like to increase each cell's
number by 3.5%, in the next row 4%, etc. What is the formula?

Example of what I'm doing:
In Cell A1 is 60,000
In Cell B1 I put the following formula: =A1*3.5%
(Answer comes out to 2,100, which is correct, but then I want ithe answer
to
be 62,100 - it's not adding the 2,100 to the 6,000 for the answer).
Please
help!

Thank you.



Two methods:
B1=A1*103.5 or
B1=A1+(A1*3.5%)


  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 36
Default Increase by % Formula

What I would do is:
1. Move everything over to Column B so the first value is in B1
2. In A2, put 3.5%
3. In B2, put =B1+(B1*$A$2)
4. Use the copy right function to copy that formula accross Row 2
5. In A3, put 4%
6. In B3, use the same formula except change $A$2 to $A$3
7. Use the copy right function to copy that formula accross Row 3
8. Continue that for as many rows down that you are going.


"Trying Hard" wrote:

Hello,

I have a row of #'s, in the row below I would like to increase each cell's
number by 3.5%, in the next row 4%, etc. What is the formula?

Example of what I'm doing:
In Cell A1 is 60,000
In Cell B1 I put the following formula: =A1*3.5%
(Answer comes out to 2,100, which is correct, but then I want ithe answer to
be 62,100 - it's not adding the 2,100 to the 6,000 for the answer). Please
help!

Thank you.



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 36
Default Increase by % Formula

Slight Correct, sorry.

use the formula =B$2+(B$2*A3).

Sorry about that


"JasonP CCTM LV" wrote:

What I would do is:
1. Move everything over to Column B so the first value is in B1
2. In A2, put 3.5%
3. In B2, put =B1+(B1*$A$2)
4. Use the copy right function to copy that formula accross Row 2
5. In A3, put 4%
6. In B3, use the same formula except change $A$2 to $A$3
7. Use the copy right function to copy that formula accross Row 3
8. Continue that for as many rows down that you are going.


"Trying Hard" wrote:

Hello,

I have a row of #'s, in the row below I would like to increase each cell's
number by 3.5%, in the next row 4%, etc. What is the formula?

Example of what I'm doing:
In Cell A1 is 60,000
In Cell B1 I put the following formula: =A1*3.5%
(Answer comes out to 2,100, which is correct, but then I want ithe answer to
be 62,100 - it's not adding the 2,100 to the 6,000 for the answer). Please
help!

Thank you.

  #7   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 36
Default Increase by % Formula

Sorry, one more correction

Use =B$2+(B$2*$A3)

Sorry, this is my first time contributing to the Online discussion group,
and wasnt thinking all the way through.
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
IF formula to get a percentage increase Carolina Excel Discussion (Misc queries) 2 May 14th 08 09:04 PM
Percent of Increase...Is there such a formula? Shayra Excel Discussion (Misc queries) 4 May 13th 08 05:45 PM
Number in cell increase with increase in font size. Value increases with increase in font.[_2_] Excel Discussion (Misc queries) 2 August 9th 07 01:58 PM
Incremental increase in a formula [email protected] Excel Discussion (Misc queries) 2 June 18th 07 11:30 AM
Formula for incremental increase alexrm Excel Worksheet Functions 0 August 18th 05 03:15 PM


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