Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
bazza825
 
Posts: n/a
Default Quick q' about working with numbers


Hi, i've just joined the group because i want to learn about the more
'in depth' facilities of excel (and also hopefully access in future).

I want to be able to calculate from a resultant calculation (does that
make sense?).
eg: £100 less 10% less 10%

Now the result should be 81 (because it's a percentage of a resultant
calculation)....

The only way i can do it is by using allsorts of empty cells and dump
numbers in it, but it's getting too complex with a quantity of
numbers...

I'm stuck, could anyone help please?

(In simple terms please, because i'm not a guru yet)

thanks in advance
barry


--
bazza825
------------------------------------------------------------------------
bazza825's Profile: http://www.excelforum.com/member.php...o&userid=33241
View this thread: http://www.excelforum.com/showthread...hreadid=530672

  #2   Report Post  
Posted to microsoft.public.excel.newusers
vandenberg p
 
Posts: n/a
Default Quick q' about working with numbers

Hello:

Algebra, not Excel.

=100*(1-0.1)*(1-0.1)
=100*(1-0.1)^2

Take your choice. As long as the two percentages are the same the
second is probably the choice. If the two percentage can be different
then the first is the choice.

Pieter Vandenberg

bazza825 wrote:


: Hi, i've just joined the group because i want to learn about the more
: 'in depth' facilities of excel (and also hopefully access in future).

: I want to be able to calculate from a resultant calculation (does that
: make sense?).
: eg: 100 less 10% less 10%

: Now the result should be 81 (because it's a percentage of a resultant
: calculation)....

: The only way i can do it is by using allsorts of empty cells and dump
: numbers in it, but it's getting too complex with a quantity of
: numbers...

: I'm stuck, could anyone help please?

: (In simple terms please, because i'm not a guru yet)

: thanks in advance
: barry


: --
: bazza825
: ------------------------------------------------------------------------
: bazza825's Profile: http://www.excelforum.com/member.php...o&userid=33241
: View this thread: http://www.excelforum.com/showthread...hreadid=530672

  #3   Report Post  
Posted to microsoft.public.excel.newusers
bazza825
 
Posts: n/a
Default Quick q' about working with numbers


vandenberg p Wrote:

Algebra, not Excel.

=100*(1-0.1)*(1-0.1)
=100*(1-0.1)^2


Many thanks for that :) It works fine, but i'd love to understand why
Also, what would i do if i had two completely different percentage
numbers (eg 15 and 4)?? Where would i put them?

Could you possibly explain it to me please? I dont understand (1-0.1)
or the ^... never was that good at math.

thanks again
barry


--
bazza825
------------------------------------------------------------------------
bazza825's Profile: http://www.excelforum.com/member.php...o&userid=33241
View this thread: http://www.excelforum.com/showthread...hreadid=530672

  #4   Report Post  
Posted to microsoft.public.excel.newusers
Bob Phillips
 
Posts: n/a
Default Quick q' about working with numbers

actually, it's arithmetic

=100*90%*90%

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)

"vandenberg p" wrote in message
...
Hello:

Algebra, not Excel.

=100*(1-0.1)*(1-0.1)
=100*(1-0.1)^2

Take your choice. As long as the two percentages are the same the
second is probably the choice. If the two percentage can be different
then the first is the choice.

Pieter Vandenberg

bazza825 wrote:


: Hi, i've just joined the group because i want to learn about the more
: 'in depth' facilities of excel (and also hopefully access in future).

: I want to be able to calculate from a resultant calculation (does that
: make sense?).
: eg: 100 less 10% less 10%

: Now the result should be 81 (because it's a percentage of a resultant
: calculation)....

: The only way i can do it is by using allsorts of empty cells and dump
: numbers in it, but it's getting too complex with a quantity of
: numbers...

: I'm stuck, could anyone help please?

: (In simple terms please, because i'm not a guru yet)

: thanks in advance
: barry


: --
: bazza825
: ------------------------------------------------------------------------
: bazza825's Profile:

http://www.excelforum.com/member.php...o&userid=33241
: View this thread:

http://www.excelforum.com/showthread...hreadid=530672



  #5   Report Post  
Posted to microsoft.public.excel.newusers
pdberger
 
Posts: n/a
Default Quick q' about working with numbers

As noted, these questions aren't so much Excel questions as algebra
questions, and getting used to formulating them in statements Excel
understands.
If you want 90% of something, you're really multiplying by 0.9 (which equals
1 minus 0.1 -- hence the first equation).
If you want to reduce by 15% and then 4%, you are really multiplying by 0.85
(1 minus 0.15) and then multiplying that result by 0.96 (1 minus 0.4).
Since you can put that all (and much, much more) into one equation, you can
write it as
A B
1 ## =A1*.85*.96

Try it.

HTH

"bazza825" wrote:


vandenberg p Wrote:

Algebra, not Excel.

=100*(1-0.1)*(1-0.1)
=100*(1-0.1)^2


Many thanks for that :) It works fine, but i'd love to understand why
Also, what would i do if i had two completely different percentage
numbers (eg 15 and 4)?? Where would i put them?

Could you possibly explain it to me please? I dont understand (1-0.1)
or the ^... never was that good at math.

thanks again
barry


--
bazza825
------------------------------------------------------------------------
bazza825's Profile: http://www.excelforum.com/member.php...o&userid=33241
View this thread: http://www.excelforum.com/showthread...hreadid=530672




  #6   Report Post  
Posted to microsoft.public.excel.newusers
bazza825
 
Posts: n/a
Default Quick q' about working with numbers


Hey, thanks all of you for that... i've tested it and it does indeed
work (not that i doubted any of it)

I couldn't understand (and still don't really) why i'd want/need to
express the 0.90 as (1-0.1)? If it's the same thing where's the benefit
of the latter?

thanks again
barry


--
bazza825
------------------------------------------------------------------------
bazza825's Profile: http://www.excelforum.com/member.php...o&userid=33241
View this thread: http://www.excelforum.com/showthread...hreadid=530672

  #7   Report Post  
Posted to microsoft.public.excel.newusers
vandenberg p
 
Posts: n/a
Default Quick q' about working with numbers

Hello:

There is no difference betweeen .9 and 1-.1 they are the same. The only
reason for using 1-.1 was to indicate the solution using the data you
supplied, in the format you supplied it, which was 10%. In your spreadsheet
you would probably put it in a discount percent, such as discounts
11% and 14%

So:

Cell A1: '1st Discount
Cell A2: '2nd Discount
Cell A3: 'Price
Cell A4: 'Discounted Price
Cell B1: .11
Cell B2: .14
Cell B3: 100
Cell B4: = B3*(1-B1)*(1-B2)

Finally if the both discount rates were the same the short way would be
to write it with an ^ which means to raise to a power. eg .9*.9 could be
written in a cell as =.9^2

Pieter Vandenberg

bazza825 wrote:

: Hey, thanks all of you for that... i've tested it and it does indeed
: work (not that i doubted any of it)

: I couldn't understand (and still don't really) why i'd want/need to
: express the 0.90 as (1-0.1)? If it's the same thing where's the benefit
: of the latter?

: thanks again
: barry


: --
: bazza825
: ------------------------------------------------------------------------
: bazza825's Profile: http://www.excelforum.com/member.php...o&userid=33241
: View this thread: http://www.excelforum.com/showthread...hreadid=530672

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
Quick formatting for negative numbers Mulepadre Excel Worksheet Functions 1 March 25th 06 03:09 AM
Help! How do you get excel to find the x(changes daily, marked in a cell from another formula) highest numbers in a group of numbers and sum them up? C-Man23 Excel Worksheet Functions 3 January 19th 06 09:52 AM
Checking Winning Numbers in the Lottery. Ann Excel Discussion (Misc queries) 4 May 18th 05 10:55 AM
Sorting alphanumeric numbers maurice.centner Excel Discussion (Misc queries) 2 May 6th 05 02:00 AM
finding common numbers in large lists Jenn Excel Worksheet Functions 1 November 11th 04 07:42 PM


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