Values 1 -10

aletvdw

New Member
Joined
May 3, 2013
Messages
16
Hi Guys,

Do not know if I can ask this here

I want to try and do a spread sheet for my retirement. Say I have 20 years left to work and I want to have $100 000 the day I retire. I want to be able to have a sheet where I can see that I am say in the 10th year and that by this time I should have saved 50 000 for my retirement. It must then show this to me in a value of between 1 - 10 in this case it would be 5 as I am halve way there.

So I want to set a minimum of $0 and maximum of $100 000 it must then calculate where I am with savings and give me a number back out of 10 as to how far I am from retirement 1 being very far away and 8 being almost there

I then also want to make a sheet where it show the following
Say my debt is a $1000 dollar a week

I must work every week to pay this amount
This will be calculated over 10 weeks.
If I work 10 weeks I must have $1000 in the bank to make sure I can pay the $1000
If I only worked 9 out of the 10 week I must have $2000 in the bank to ensure that I will be able to pay for the week that I did not work. So I want to ensure that I always have enough money in the bank to be able to pay my debts if I do not work. So if I only worked 3 out of the 10 weeks I must have $7000 in the bank to be able to survive.
I will input every week if I worked or not
This must also then tell me where I am on a scale of 1 -10
10 being that I worked all 10 weeks and is good
1 being I only worked 1 week and need to ensure there is $9000 in the bank to be able to pay everything. Basically 1 will tell me I am in trouble and 10 that I am good (same for the 1st sheet)
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Say in A1 you have a year in which you started saving for retirement,
in A2 you have number of years at work,
in A3 you have an amount needed for your retirement,
then in A4 use the formula:
Code:
=10*(YEAR(NOW())-A1)/A2
and in B4 use the formula:
Code:
=A3*(YEAR(NOW())-A1)/A2
This way, in A4 you will have a number from 0 to 10 indicating how far are you with saving and in B4 you will have an amount that you have saved yet.
This will solve your first problem. :)

For your second problem, please fill the cells A1:A10 with letters "y" or "n" indicating you were at work this week or not.
Then in A11 use a formula:
Code:
=COUNTIF(A1:A10,"y")
This will calculate how many weeks you were at work.
Hope you got it and now you know how to calculate how much money you need. :)
Best,
Paweł Orliński
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,591
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top