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 » Charts and Charting
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Comments in Charts



 
 
Thread Tools Display Modes
  #1  
Old May 19th, 2008, 07:48 PM posted to microsoft.public.excel.charting
Fred Zack
external usenet poster
 
Posts: 16
Default Comments in Charts

Two years ago Mike P. from KC asked:
"Is it possible to have a data cell's comment (which shows up on mouse-over
of
the red triangle in the upper right of the cell) also show up on mouse-over
of the data point on a chart that takes a data point or points from a
"commented on" cell(s)? If so, how can you do it? "

The only reply was from Jon Peltier: "This isn't a native Excel capability,
but it's an interesting idea, and one that could be accomplished using VBA."

Does anyone know if this has been done yet? If so how could I get that macro?
  #2  
Old May 19th, 2008, 07:58 PM posted to microsoft.public.excel.charting
Jon Peltier
external usenet poster
 
Posts: 5,018
Default Comments in Charts

It remains an interesting idea. I've had no further interest in it until
now.

I haven't addressed this problem yet, because it's a multiple-part routine.
It requires chart events to detect a mouseover on the chart, it requires
parsing of the chart data to determine which cell contains the data point's
value, and it requires reading and displaying of the comment.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Fred Zack" wrote in message
...
Two years ago Mike P. from KC asked:
"Is it possible to have a data cell's comment (which shows up on
mouse-over
of
the red triangle in the upper right of the cell) also show up on
mouse-over
of the data point on a chart that takes a data point or points from a
"commented on" cell(s)? If so, how can you do it? "

The only reply was from Jon Peltier: "This isn't a native Excel
capability,
but it's an interesting idea, and one that could be accomplished using
VBA."

Does anyone know if this has been done yet? If so how could I get that
macro?



  #3  
Old May 19th, 2008, 08:14 PM posted to microsoft.public.excel.charting
Fred Zack
external usenet poster
 
Posts: 16
Default Comments in Charts

AFter more digging I found that actually Jon, you did supply an answer of
sorts on Oct of 2006 : "Marie -

Excel doesn't have this capability built-in, but it is flexible enough that
clever programmers can provide similar functionality. In this case, the
clever programmer is my colleague Tushar Mehta. On his web site
(http://tushar-mehta.com) is a utility called Chart Hover Labels, which will
do what you need.

- Jon"

I am going to try it out and see how it works. Problem is it seems rather
"all or none". I would like to have a data label and then show more detail on
rollover, but I think Hover Chart Label just wants to ONLY show when you
hover.


"Jon Peltier" wrote:

It remains an interesting idea. I've had no further interest in it until
now.

I haven't addressed this problem yet, because it's a multiple-part routine.
It requires chart events to detect a mouseover on the chart, it requires
parsing of the chart data to determine which cell contains the data point's
value, and it requires reading and displaying of the comment.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Fred Zack" wrote in message
...
Two years ago Mike P. from KC asked:
"Is it possible to have a data cell's comment (which shows up on
mouse-over
of
the red triangle in the upper right of the cell) also show up on
mouse-over
of the data point on a chart that takes a data point or points from a
"commented on" cell(s)? If so, how can you do it? "

The only reply was from Jon Peltier: "This isn't a native Excel
capability,
but it's an interesting idea, and one that could be accomplished using
VBA."

Does anyone know if this has been done yet? If so how could I get that
macro?




  #4  
Old May 19th, 2008, 08:46 PM posted to microsoft.public.excel.charting
Fred Zack
external usenet poster
 
Posts: 16
Default Comments in Charts

Does not appear to be working corrrectly. I just get the labels displayed
permenatly or get a Run-Time error message. Maybe this is due to "limited
testing" with Excel versions 97, 2000 and 2002. I have 2002. So no answer to
question yet.

"Fred Zack" wrote:

AFter more digging I found that actually Jon, you did supply an answer of
sorts on Oct of 2006 : "Marie -

Excel doesn't have this capability built-in, but it is flexible enough that
clever programmers can provide similar functionality. In this case, the
clever programmer is my colleague Tushar Mehta. On his web site
(http://tushar-mehta.com) is a utility called Chart Hover Labels, which will
do what you need.

- Jon"

I am going to try it out and see how it works. Problem is it seems rather
"all or none". I would like to have a data label and then show more detail on
rollover, but I think Hover Chart Label just wants to ONLY show when you
hover.


"Jon Peltier" wrote:

It remains an interesting idea. I've had no further interest in it until
now.

I haven't addressed this problem yet, because it's a multiple-part routine.
It requires chart events to detect a mouseover on the chart, it requires
parsing of the chart data to determine which cell contains the data point's
value, and it requires reading and displaying of the comment.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Fred Zack" wrote in message
...
Two years ago Mike P. from KC asked:
"Is it possible to have a data cell's comment (which shows up on
mouse-over
of
the red triangle in the upper right of the cell) also show up on
mouse-over
of the data point on a chart that takes a data point or points from a
"commented on" cell(s)? If so, how can you do it? "

The only reply was from Jon Peltier: "This isn't a native Excel
capability,
but it's an interesting idea, and one that could be accomplished using
VBA."

Does anyone know if this has been done yet? If so how could I get that
macro?




  #5  
Old May 20th, 2008, 04:52 AM posted to microsoft.public.excel.charting
Jon Peltier
external usenet poster
 
Posts: 5,018
Default Comments in Charts

Hover Chart Label operates independently of any data labels. Apply the data
labels you want, using one of these add-ins if the built-in options don't
show what you want:

Rob Bovey's Chart Labeler, http://appspro.com
John Walkenbach's Chart Tools, http://j-walk.com

Then use Tushar's utility for the labels that show when you mouse over the
points.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Fred Zack" wrote in message
...
AFter more digging I found that actually Jon, you did supply an answer of
sorts on Oct of 2006 : "Marie -

Excel doesn't have this capability built-in, but it is flexible enough
that
clever programmers can provide similar functionality. In this case, the
clever programmer is my colleague Tushar Mehta. On his web site
(http://tushar-mehta.com) is a utility called Chart Hover Labels, which
will
do what you need.

- Jon"

I am going to try it out and see how it works. Problem is it seems rather
"all or none". I would like to have a data label and then show more detail
on
rollover, but I think Hover Chart Label just wants to ONLY show when you
hover.


"Jon Peltier" wrote:

It remains an interesting idea. I've had no further interest in it until
now.

I haven't addressed this problem yet, because it's a multiple-part
routine.
It requires chart events to detect a mouseover on the chart, it requires
parsing of the chart data to determine which cell contains the data
point's
value, and it requires reading and displaying of the comment.

- Jon
-------
Jon Peltier, Microsoft Excel MVP
Tutorials and Custom Solutions
Peltier Technical Services, Inc. - http://PeltierTech.com
_______


"Fred Zack" wrote in message
...
Two years ago Mike P. from KC asked:
"Is it possible to have a data cell's comment (which shows up on
mouse-over
of
the red triangle in the upper right of the cell) also show up on
mouse-over
of the data point on a chart that takes a data point or points from a
"commented on" cell(s)? If so, how can you do it? "

The only reply was from Jon Peltier: "This isn't a native Excel
capability,
but it's an interesting idea, and one that could be accomplished using
VBA."

Does anyone know if this has been done yet? If so how could I get that
macro?






 




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 09:09 PM.


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