Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,670
Default Please Help, Pay Back time?

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Please Help, Pay Back time?

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,670
Default Please Help, Pay Back time?

sorry about that, I meant "initial Value" not "initial year"

"Barb Reinhardt" wrote:

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,355
Default Please Help, Pay Back time?

I should have written

Final Value = 2* Initial Value

Final Value = Initial Value * 1.04^n

2 * Initial Value = Initial Value *1.04^n


"Eric" wrote:

sorry about that, I meant "initial Value" not "initial year"

"Barb Reinhardt" wrote:

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,670
Default Please Help, Pay Back time?

I can't make sense of what you wrote.
Also, I need to make sure that the calculated value is the sum of each year
including interest. This should be calculated by adding year1 + year2 + year3
etc
year2 and up should be calculated by =Year1^(1.04*n) where n = the year#

"Barb Reinhardt" wrote:

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 623
Default Please Help, Pay Back time?

Eric, you need to define your problem much better. Barb gave you an excellent
response based on your first request. Also, you need to understand future value
better, it's "Amount*(1.04^n)", not "Year1^(1.04*n)".

So, it's over to you. Define your problem, preferably with an example which
shows which result you want. You will get an answer.

--
Regards,
Fred


"Eric" wrote in message
...
I can't make sense of what you wrote.
Also, I need to make sure that the calculated value is the sum of each year
including interest. This should be calculated by adding year1 + year2 + year3
etc
year2 and up should be calculated by =Year1^(1.04*n) where n = the year#

"Barb Reinhardt" wrote:

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,670
Default Please Help, Pay Back time?

Sorry about all the confusion, I'll try it again.

If there is a 4% increase each year over the previous year, how many years
it will take until the sum of the years will equal A1

The values I will input are "initial year cost" and A1

I am looking to calculate the value of each year (the first year being user
defined) and then add all the years together until they equal the value in
A1. The Returned value should be something like 8.2 years.

Thank You for your help, patience and expertise,

Eric

"Fred Smith" wrote:

Eric, you need to define your problem much better. Barb gave you an excellent
response based on your first request. Also, you need to understand future value
better, it's "Amount*(1.04^n)", not "Year1^(1.04*n)".

So, it's over to you. Define your problem, preferably with an example which
shows which result you want. You will get an answer.

--
Regards,
Fred


"Eric" wrote in message
...
I can't make sense of what you wrote.
Also, I need to make sure that the calculated value is the sum of each year
including interest. This should be calculated by adding year1 + year2 + year3
etc
year2 and up should be calculated by =Year1^(1.04*n) where n = the year#

"Barb Reinhardt" wrote:

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,819
Default Please Help, Pay Back time?

At 4 % the number will be a tad over 17 years. Unless of course, this is
one of those "magic money" schemes, and then the number of years becomes
whatever the mark will believe.

Eric wrote:

Sorry about all the confusion, I'll try it again.

If there is a 4% increase each year over the previous year, how many years
it will take until the sum of the years will equal A1

The values I will input are "initial year cost" and A1

I am looking to calculate the value of each year (the first year being user
defined) and then add all the years together until they equal the value in
A1. The Returned value should be something like 8.2 years.

Thank You for your help, patience and expertise,

Eric

"Fred Smith" wrote:


Eric, you need to define your problem much better. Barb gave you an excellent
response based on your first request. Also, you need to understand future value
better, it's "Amount*(1.04^n)", not "Year1^(1.04*n)".

So, it's over to you. Define your problem, preferably with an example which
shows which result you want. You will get an answer.

--
Regards,
Fred


"Eric" wrote in message
...

I can't make sense of what you wrote.
Also, I need to make sure that the calculated value is the sum of each year
including interest. This should be calculated by adding year1 + year2 + year3
etc
year2 and up should be calculated by =Year1^(1.04*n) where n = the year#

"Barb Reinhardt" wrote:


It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:


Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1





  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 623
Default Please Help, Pay Back time?

OK. Say you have the following:

A1: The amount the solar panel costs
A2: The amount they currently pay in electricity every year
A3: Inflation rate (4%)

You want to know how long it will take for payments of $A2 compounded at A3% to
equal A1. If so, use:

=nper(a3,a2,0,-a1)

--
Regards,
Fred


"Eric" wrote in message
...
Sorry about all the confusion, I'll try it again.

If there is a 4% increase each year over the previous year, how many years
it will take until the sum of the years will equal A1

The values I will input are "initial year cost" and A1

I am looking to calculate the value of each year (the first year being user
defined) and then add all the years together until they equal the value in
A1. The Returned value should be something like 8.2 years.

Thank You for your help, patience and expertise,

Eric

"Fred Smith" wrote:

Eric, you need to define your problem much better. Barb gave you an excellent
response based on your first request. Also, you need to understand future
value
better, it's "Amount*(1.04^n)", not "Year1^(1.04*n)".

So, it's over to you. Define your problem, preferably with an example which
shows which result you want. You will get an answer.

--
Regards,
Fred


"Eric" wrote in message
...
I can't make sense of what you wrote.
Also, I need to make sure that the calculated value is the sum of each year
including interest. This should be calculated by adding year1 + year2 +
year3
etc
year2 and up should be calculated by =Year1^(1.04*n) where n = the year#

"Barb Reinhardt" wrote:

It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:

Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many
years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1






  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,819
Default Please Help, Pay Back time?

Please google for "Rule of 70".

Eric wrote:

I can't make sense of what you wrote.
Also, I need to make sure that the calculated value is the sum of each year
including interest. This should be calculated by adding year1 + year2 + year3
etc
year2 and up should be calculated by =Year1^(1.04*n) where n = the year#

"Barb Reinhardt" wrote:


It should make no difference what the initial year is (I think)

THis is your equation

Initial Value * 1.04^n = 2* Initial Year

Solve for n (which is the # of hears

1.04^N = 2
n log 1.04 = log 2
n = log 2/log 1.04
N = 17.67 years.

If the interest rate changes, your result will change.

HTH,
Barb Reinhardt

"Eric" wrote:


Hello everyone,

I am trying to create a forumla to show pay back time.

If there is a 4% increase each year over the previous year, how many years
it will take until the accrued years will equal A1

The values I will input are "initial year" and A1




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
copy back macro/roll back moh Excel Worksheet Functions 4 March 5th 07 02:19 PM
Use of "&" in Header name ex. "CS&T" comes back CS&[Time]? mshellz2u Excel Discussion (Misc queries) 2 June 28th 06 08:08 PM
I hid row 1 and can't get it back? Nyczoo Excel Discussion (Misc queries) 4 January 24th 06 07:22 PM
Jon - come back Wazooli Charts and Charting in Excel 0 March 24th 05 04:49 PM
From HTML back to XLS? Dtruelove Excel Discussion (Misc queries) 2 February 9th 05 01:09 PM


All times are GMT +1. The time now is 03:29 PM.

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"