Savings Goal "Thermometer"

S

Shhhh

Hello all,

Is it possible to use excel to create a savings goal thermometer, you the
type where as your savings increase the thermometer increases till you reach
your goal?


Thanks,
Shhhh
 
S

Shhhh

What fantastic methods!! thank you all so much. I never realized just how
versatile Excel was... thanks to all!

Shhhh
 
B

Bill Sharpe

skatonni said:
See if this suits you.
http://www.juiceanalytics.com/weblog/?p=236

If your savings are in A1.
B1 =REPT("I",A1)

or

If your savings are in A1 and the goal is in B1.
C1 = REPT("I",(A1/B1*100))
The second formula plots how far you are towards your goal.
It might help to also plot your goal itself with this formula
D1 = REPT("I", 100)

"I", of course, isn't the only character you can use for repeating.

Bill
 
D

Dave Peterson

I like this one (it simulates the cross mark on the 5th entry):

=REPT(REPT(CHAR(134),4)&" ",INT(A1/5))&REPT("|",MOD(A1,5))

With 7 in A1, you'll see something like:
†††† ||

(nice if you're using Arial--not sure how it'll show up in the newsgroup,
though.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top