A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

fomula required



 
 
Thread Tools Display Modes
  #1  
Old January 6th, 2010, 10:56 PM posted to microsoft.public.excel.worksheet.functions
Keith[_22_]
external usenet poster
 
Posts: 10
Default fomula required

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a %, in
this case it would show 50%.

  #2  
Old January 6th, 2010, 11:13 PM posted to microsoft.public.excel.worksheet.functions
Eva
external usenet poster
 
Posts: 316
Default fomula required

=B3/SUM(B1:B2)
Click yes if helped
--
Greatly appreciated
Eva


"Keith" wrote:

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a %, in
this case it would show 50%.

  #3  
Old January 7th, 2010, 03:18 AM posted to microsoft.public.excel.worksheet.functions
Keith[_22_]
external usenet poster
 
Posts: 10
Default fomula required

From the formula supplied, it doesn't seem to work properly if I change the
numbers, eg.

A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)

It gives an answer of 51% when it obviously should read 100%.

Am I missing something here?

Keith

"Eva" wrote in message
...
=B3/SUM(B1:B2)
Click yes if helped
--
Greatly appreciated
Eva


"Keith" wrote:

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a %, in
this case it would show 50%.


  #4  
Old January 7th, 2010, 05:18 AM posted to microsoft.public.excel.worksheet.functions
Fred Smith[_4_]
external usenet poster
 
Posts: 2,386
Default fomula required

It may be obvious to you, but it's not obvious to us. If you want the % that
the current price is of the high (which is the only one which gives the 100%
in your example), then you want:
=a3/a1

If you want something else, explain what range calculation you want.
Examples are good, as well as what answer you want from the example.

Regards,
Fred

"Keith" wrote in message
news
From the formula supplied, it doesn't seem to work properly if I change
the numbers, eg.

A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)

It gives an answer of 51% when it obviously should read 100%.

Am I missing something here?

Keith

"Eva" wrote in message
...
=B3/SUM(B1:B2)
Click yes if helped
--
Greatly appreciated
Eva


"Keith" wrote:

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a %,
in
this case it would show 50%.



  #5  
Old January 7th, 2010, 05:53 AM posted to microsoft.public.excel.worksheet.functions
Keith[_22_]
external usenet poster
 
Posts: 10
Default fomula required

Thanks Fred, you do a marvellous job putting up with us not explaining
ourselves properly. Please accept my appology.

What I would like to find is the % that the current price is of the range.
The range I have used in the example below is (low) $66.10 - $70 (high).

(The range is $3.90 and the current price is at the top of that range so it
must be 100%) - but I can't seem to put that into an XL formula.

Hope this helps,

Keith

Fred Smith" wrote in message
...
It may be obvious to you, but it's not obvious to us. If you want the %
that the current price is of the high (which is the only one which gives
the 100% in your example), then you want:
=a3/a1

If you want something else, explain what range calculation you want.
Examples are good, as well as what answer you want from the example.

Regards,
Fred

"Keith" wrote in message
news
From the formula supplied, it doesn't seem to work properly if I change
the numbers, eg.

A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)

It gives an answer of 51% when it obviously should read 100%.

Am I missing something here?

Keith

"Eva" wrote in message
...
=B3/SUM(B1:B2)
Click yes if helped
--
Greatly appreciated
Eva


"Keith" wrote:

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a %,
in
this case it would show 50%.




  #6  
Old January 7th, 2010, 07:30 AM posted to microsoft.public.excel.worksheet.functions
Joe User[_2_]
external usenet poster
 
Posts: 757
Default fomula required

"Keith" wrote:
(The range is $3.90 and the current price is at the top of that range so
it must be 100%) - but I can't seem to put that into an XL formula.

[....]
A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)


I think you want:

=(A3-A2) / (A1-A2)

formatted as Percentage.


----- original message -----

"Keith" wrote in message
...
Thanks Fred, you do a marvellous job putting up with us not explaining
ourselves properly. Please accept my appology.

What I would like to find is the % that the current price is of the range.
The range I have used in the example below is (low) $66.10 - $70 (high).

(The range is $3.90 and the current price is at the top of that range so
it must be 100%) - but I can't seem to put that into an XL formula.

Hope this helps,

Keith

Fred Smith" wrote in message
...
It may be obvious to you, but it's not obvious to us. If you want the %
that the current price is of the high (which is the only one which gives
the 100% in your example), then you want:
=a3/a1

If you want something else, explain what range calculation you want.
Examples are good, as well as what answer you want from the example.

Regards,
Fred

"Keith" wrote in message
news
From the formula supplied, it doesn't seem to work properly if I change
the numbers, eg.

A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)

It gives an answer of 51% when it obviously should read 100%.

Am I missing something here?

Keith

"Eva" wrote in message
...
=B3/SUM(B1:B2)
Click yes if helped
--
Greatly appreciated
Eva


"Keith" wrote:

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a %,
in
this case it would show 50%.





  #7  
Old January 7th, 2010, 09:06 AM posted to microsoft.public.excel.worksheet.functions
Keith[_22_]
external usenet poster
 
Posts: 10
Default fomula required

thank you so much. works great!


"Joe User" joeu2004 wrote in message
...
"Keith" wrote:
(The range is $3.90 and the current price is at the top of that range so
it must be 100%) - but I can't seem to put that into an XL formula.

[....]
A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)


I think you want:

=(A3-A2) / (A1-A2)

formatted as Percentage.


----- original message -----

"Keith" wrote in message
...
Thanks Fred, you do a marvellous job putting up with us not explaining
ourselves properly. Please accept my appology.

What I would like to find is the % that the current price is of the
range. The range I have used in the example below is (low) $66.10 - $70
(high).

(The range is $3.90 and the current price is at the top of that range so
it must be 100%) - but I can't seem to put that into an XL formula.

Hope this helps,

Keith

Fred Smith" wrote in message
...
It may be obvious to you, but it's not obvious to us. If you want the %
that the current price is of the high (which is the only one which gives
the 100% in your example), then you want:
=a3/a1

If you want something else, explain what range calculation you want.
Examples are good, as well as what answer you want from the example.

Regards,
Fred

"Keith" wrote in message
news From the formula supplied, it doesn't seem to work properly if I change
the numbers, eg.

A1: $70 (a stock high)
A2: $66.10 (a stock low)
A3: $70 (current price)

It gives an answer of 51% when it obviously should read 100%.

Am I missing something here?

Keith

"Eva" wrote in message
...
=B3/SUM(B1:B2)
Click yes if helped
--
Greatly appreciated
Eva


"Keith" wrote:

I'm attempting to get a formula to reflect as a %.

A1: $4 (a stock high)
A2: $2 (a stock low)
A3: $3 (current price)

How can I get a formula to show the current price of the range as a
%, in
this case it would show 50%.






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:13 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.