Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Using a result in the same formula.

For example, take a number 100 (A1). In the formula in B1 - take A1 and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10% and take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take 10% of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How do I
write that formula in ONE LINE??????
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,327
Default Using a result in the same formula.

=A1*0.9^3

HTH. Best wishes Harald

"Fran" skrev i melding
...
For example, take a number 100 (A1). In the formula in B1 - take A1 and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10% and

take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take 10%

of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How do I
write that formula in ONE LINE??????



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 19
Default Using a result in the same formula.

Harald - Yes - that DID work if I am using ONLY 10%. How did you come up with
0.9? I am wondering though - I just used 10% in all three cases as an
example. Actually a student asked me this same thing using different numbers
- like 100 - 20% and then 10% and then 12%. Actually exponential worked
great if it's the same percentage. Is there a way to do different
percentages? I started out (in Cell B1) saying =A1-A1*10% (which gave me my
90%) but how can I USE that answer and say take 12% away from THAT????

"Harald Staff" wrote:

=A1*0.9^3

HTH. Best wishes Harald

"Fran" skrev i melding
...
For example, take a number 100 (A1). In the formula in B1 - take A1 and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10% and

take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take 10%

of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How do I
write that formula in ONE LINE??????




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 863
Default Using a result in the same formula.

He assumed you wanted the results you showed. 10% of 100 is NOT 90%, it's 10%.


On Sun, 7 Nov 2004 13:19:02 -0800, "Fran"
wrote:

Harald - Yes - that DID work if I am using ONLY 10%. How did you come up with
0.9? I am wondering though - I just used 10% in all three cases as an
example. Actually a student asked me this same thing using different numbers
- like 100 - 20% and then 10% and then 12%. Actually exponential worked
great if it's the same percentage. Is there a way to do different
percentages? I started out (in Cell B1) saying =A1-A1*10% (which gave me my
90%) but how can I USE that answer and say take 12% away from THAT????

"Harald Staff" wrote:

=A1*0.9^3

HTH. Best wishes Harald

"Fran" skrev i melding
...
For example, take a number 100 (A1). In the formula in B1 - take A1 and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10% and

take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take 10%

of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How do

I
write that formula in ONE LINE??????





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,327
Default Using a result in the same formula.

This will always be very complicated unless you and your students recognize
that 1% is nothing but 0.01. Students of all kinds should.
This would be a readable solution:
=A1*(1-20%)*(1-10%)*(1-12%)
and shorter, since (1-20%) equals (1-20*0.01) equals (1-0.2) equals (0.8) :
=A1*0.8*0.9*0.88

HTH. Best wishes Harald
(significant digits logic deliberately left out of the discussion; Excel
doesn't care anyway)

"Fran" skrev i melding
...
Harald - Yes - that DID work if I am using ONLY 10%. How did you come up

with
0.9? I am wondering though - I just used 10% in all three cases as an
example. Actually a student asked me this same thing using different

numbers
- like 100 - 20% and then 10% and then 12%. Actually exponential worked
great if it's the same percentage. Is there a way to do different
percentages? I started out (in Cell B1) saying =A1-A1*10% (which gave me

my
90%) but how can I USE that answer and say take 12% away from THAT????

"Harald Staff" wrote:

=A1*0.9^3

HTH. Best wishes Harald

"Fran" skrev i melding
...
For example, take a number 100 (A1). In the formula in B1 - take A1

and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10%

and
take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take

10%
of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How

do I
write that formula in ONE LINE??????








  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 690
Default Using a result in the same formula.

Just to add. If B1:B3 hold 20%,10%, 12%, then another option would be the
following array formula. This idea subtracts 1 from each number.

=A1*PRODUCT(1-B1:B3)

--
Dana DeLouis
Win XP & Office 2003


"Fran" wrote in message
...
Harald - Yes - that DID work if I am using ONLY 10%. How did you come up
with
0.9? I am wondering though - I just used 10% in all three cases as an
example. Actually a student asked me this same thing using different
numbers
- like 100 - 20% and then 10% and then 12%. Actually exponential worked
great if it's the same percentage. Is there a way to do different
percentages? I started out (in Cell B1) saying =A1-A1*10% (which gave me
my
90%) but how can I USE that answer and say take 12% away from THAT????

"Harald Staff" wrote:

=A1*0.9^3

HTH. Best wishes Harald

"Fran" skrev i melding
...
For example, take a number 100 (A1). In the formula in B1 - take A1
and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10% and

take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take
10%

of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How
do I
write that formula in ONE LINE??????






  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Using a result in the same formula.

Fran

Your terms are not correct.

10% of 100 is 10, not 90

To get 72.9 enter in B1 =((A1*0.9)*0.9)*0.9

Could also be written as =A1*0.9*0.9*0.9

I just stuck the parens in so's you could see the steps.

Gord Dibben Excel MVP

On Sun, 7 Nov 2004 12:30:01 -0800, "Fran"
wrote:

For example, take a number 100 (A1). In the formula in B1 - take A1 and
multiply it by 10% - TAKE THE RESULT of that and Multiply it by 10% and take
the RESULT of thank and multiply by 10%. Answer should be 72.9 Take 10% of
100 would be 90, 10% of 90 would be 81, 10% of 81 would be 72.9. How do I
write that formula in ONE LINE??????


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
Formula result and displayed result are different spindoctor Excel Worksheet Functions 4 July 15th 09 12:53 AM
Formula result does not match displayed result lothar Excel Worksheet Functions 1 June 23rd 08 05:05 AM
Formula Bar F9 Result differs from cell result??? Aaron Excel Worksheet Functions 3 May 15th 08 06:32 PM
Advanced formula - Return result & Show Cell Reference of result Irv Excel Worksheet Functions 7 May 6th 06 03:36 AM
Median result used in formula gives incorrect result vlatham Excel Worksheet Functions 4 September 21st 05 04:26 PM


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