Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

Hello,

I'¨m trying to build some user defined charts for several users to
maintain consistent formatting etc. I know how to make the charts,
saving them and most settings but there is one issue I haven't solved
yet.

The user defined charts will be used on lots of different datatypes.
For exampel, one of the charts will have 2 dataseries but another will
have 10. They should still have the same type of formatting in all
series. Lets say they want a Line chart and the the lines should be of
a spesific thickness (thicker than default). How can I make sure that
all lines will have this thickness, no matter how many dataseries
there are? Do I have to create a user defined chart with a maximum
number of dataseries and format all series to my specifications?

--
Fredrik E. Nilsen
  #2   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default User-defined charts

Do I have to create a user defined chart with a maximum
number of dataseries and format all series to my specifications?


That's right.

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


"Fredrik E. Nilsen" wrote in message
...
Hello,

I'¨m trying to build some user defined charts for several users to
maintain consistent formatting etc. I know how to make the charts,
saving them and most settings but there is one issue I haven't solved
yet.

The user defined charts will be used on lots of different datatypes.
For exampel, one of the charts will have 2 dataseries but another will
have 10. They should still have the same type of formatting in all
series. Lets say they want a Line chart and the the lines should be of
a spesific thickness (thicker than default). How can I make sure that
all lines will have this thickness, no matter how many dataseries
there are? Do I have to create a user defined chart with a maximum
number of dataseries and format all series to my specifications?

--
Fredrik E. Nilsen



  #3   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Sat, 9 Dec 2006 22:09:05 -0500, "Jon Peltier"
wrote:

Do I have to create a user defined chart with a maximum
number of dataseries and format all series to my specifications?


That's right.


Thanks for your quick reply. A couple of more questions then: What is
the maximum number of dataseries in a chart? And is there a way to
achive consistant formatting through VBA?

--
Fredrik E. Nilsen
  #4   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default User-defined charts

You can have up to 255 series in a chart, which should be more than enough
for any legible chart.

In vba you can apply formats to a chart, so this is a matter of setting up
the code to apply the desired formats to the appropriate series.

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


"Fredrik E. Nilsen" wrote in message
...
On Sat, 9 Dec 2006 22:09:05 -0500, "Jon Peltier"
wrote:

Do I have to create a user defined chart with a maximum
number of dataseries and format all series to my specifications?


That's right.


Thanks for your quick reply. A couple of more questions then: What is
the maximum number of dataseries in a chart? And is there a way to
achive consistant formatting through VBA?

--
Fredrik E. Nilsen



  #5   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Sun, 10 Dec 2006 10:00:45 -0500, "Jon Peltier"
wrote:

You can have up to 255 series in a chart, which should be more than enough
for any legible chart.

In vba you can apply formats to a chart, so this is a matter of setting up
the code to apply the desired formats to the appropriate series.


Thanks again! I have tried google for more information about how Excel
handles this but I haven't found anything that goes in the depth of
it. Do you have any pointers? Sites, books etc.

It seems to me there should be an option to set these settings once
and for all. I have customers making reports with 30-50 different
charts every day and they spend a lot of time tweaking the formatting.
Is VB really the only way to go? Any add-ins you know of? Or do people
use other tools for this sort of work?

--
Fredrik E. Nilsen


  #7   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Sun, 10 Dec 2006 09:48:38 -0600, "Don Guillett"
wrote:

Jon is perhaps the foremost charting authority for excel.

Jon Peltier's Excel Charts


Yes, so I've noticed. :)

--
Fredrik E. Nilsen
  #9   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Sun, 10 Dec 2006 10:57:46 -0600, "Don Guillett"
wrote:

I meant to give you the url to his web site
http://peltiertech.com/Excel/Charts/index.html


Yes, I know about his website and I've been through it. I'm seeking
even more in-depth information.

--
Fredrik E. Nilsen
  #10   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default User-defined charts

What VBA does is applies the tweaking automatically. You need to come up
with a template or a set of tweaks that make people happy enough with the
chart. I don't know what you mean by set the settings once and for all,
unless you want a more totally VBA approach that dumps the data into an
Excel template and plots it in a protected chart. Otherwise, human nature
dictates that people are going to tweak.

If you decide to use VBA, you could start with some recorded macros, then
examine the code and remove duplicate items and stray mouse actions.

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


"Fredrik E. Nilsen" wrote in message
...
On Sun, 10 Dec 2006 10:00:45 -0500, "Jon Peltier"
wrote:

You can have up to 255 series in a chart, which should be more than enough
for any legible chart.

In vba you can apply formats to a chart, so this is a matter of setting up
the code to apply the desired formats to the appropriate series.


Thanks again! I have tried google for more information about how Excel
handles this but I haven't found anything that goes in the depth of
it. Do you have any pointers? Sites, books etc.

It seems to me there should be an option to set these settings once
and for all. I have customers making reports with 30-50 different
charts every day and they spend a lot of time tweaking the formatting.
Is VB really the only way to go? Any add-ins you know of? Or do people
use other tools for this sort of work?

--
Fredrik E. Nilsen





  #11   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Mon, 11 Dec 2006 07:02:03 -0500, "Jon Peltier"
wrote:

What VBA does is applies the tweaking automatically. You need to come up
with a template or a set of tweaks that make people happy enough with the
chart. I don't know what you mean by set the settings once and for all,
unless you want a more totally VBA approach that dumps the data into an
Excel template and plots it in a protected chart. Otherwise, human nature
dictates that people are going to tweak.

If you decide to use VBA, you could start with some recorded macros, then
examine the code and remove duplicate items and stray mouse actions.


Yes, I know they will try to tweak it but I would like to make the
charts as good as possible before they start ruining it agian. :)

What I mean is, I would like to save the settings for bars, lines etc
(thickness, borders, colours) in the user-defined chart so I could be
sure that they have the correct settings every time, even if they
change the chart-type or add more serie.

Seems like I have to use a VBA-approach. Btw, do you know if 2007
handles this any differently?

--
Fredrik E. Nilsen
  #12   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default User-defined charts

Excel 2007 handles chart formatting in VBA nominally the same as in 2003,
although you may find some minor differences.

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


"Fredrik E. Nilsen" wrote in message
...
On Mon, 11 Dec 2006 07:02:03 -0500, "Jon Peltier"
wrote:

What VBA does is applies the tweaking automatically. You need to come up
with a template or a set of tweaks that make people happy enough with the
chart. I don't know what you mean by set the settings once and for all,
unless you want a more totally VBA approach that dumps the data into an
Excel template and plots it in a protected chart. Otherwise, human nature
dictates that people are going to tweak.

If you decide to use VBA, you could start with some recorded macros, then
examine the code and remove duplicate items and stray mouse actions.


Yes, I know they will try to tweak it but I would like to make the
charts as good as possible before they start ruining it agian. :)

What I mean is, I would like to save the settings for bars, lines etc
(thickness, borders, colours) in the user-defined chart so I could be
sure that they have the correct settings every time, even if they
change the chart-type or add more serie.

Seems like I have to use a VBA-approach. Btw, do you know if 2007
handles this any differently?

--
Fredrik E. Nilsen



  #13   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Tue, 12 Dec 2006 17:29:47 -0500, "Jon Peltier"
wrote:

Excel 2007 handles chart formatting in VBA nominally the same as in 2003,
although you may find some minor differences.


Thanks again, but I guess I was a bit unclear. What I meant was: Do
you know if 2007 handles user-defined charts any differently?

--
Fredrik E. Nilsen
  #14   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default User-defined charts

I suspect for backwards compatibility there may be similar functionality, at
least through VBA. In the UI, there is a new chart template capability,
which I haven't had the chance to try out. Are you planning to upgrade?

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


"Fredrik E. Nilsen" wrote in message
...
On Tue, 12 Dec 2006 17:29:47 -0500, "Jon Peltier"
wrote:

Excel 2007 handles chart formatting in VBA nominally the same as in 2003,
although you may find some minor differences.


Thanks again, but I guess I was a bit unclear. What I meant was: Do
you know if 2007 handles user-defined charts any differently?

--
Fredrik E. Nilsen



  #15   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Tue, 12 Dec 2006 22:35:22 -0500, "Jon Peltier"
wrote:

I suspect for backwards compatibility there may be similar functionality, at
least through VBA. In the UI, there is a new chart template capability,
which I haven't had the chance to try out. Are you planning to upgrade?


The customer in this project is considering to upgrade. They make
several reports every day with lots of charts in each report. One of
their main goals is to achieve consistant formatting througout all the
charts, without spending too much time and without letting the users
have to format it manually.

If this is easier with 2007, it may be an argument for upgrading.

--
Fredrik E. Nilsen


  #16   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 6,582
Default User-defined charts

They should not at this time upgrade only because of charting. There are
other features which may make the upgrade attractive (more rows and columns,
enhanced formatting, the new table feature, and more), but charting has not
progressed beyond Excel 2003.

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


"Fredrik E. Nilsen" wrote in message
...
On Tue, 12 Dec 2006 22:35:22 -0500, "Jon Peltier"
wrote:

I suspect for backwards compatibility there may be similar functionality,
at
least through VBA. In the UI, there is a new chart template capability,
which I haven't had the chance to try out. Are you planning to upgrade?


The customer in this project is considering to upgrade. They make
several reports every day with lots of charts in each report. One of
their main goals is to achieve consistant formatting througout all the
charts, without spending too much time and without letting the users
have to format it manually.

If this is easier with 2007, it may be an argument for upgrading.

--
Fredrik E. Nilsen



  #17   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 43
Default User-defined charts

On Wed, 13 Dec 2006 13:05:23 -0500, "Jon Peltier"
wrote:

They should not at this time upgrade only because of charting. There are
other features which may make the upgrade attractive (more rows and columns,
enhanced formatting, the new table feature, and more), but charting has not
progressed beyond Excel 2003.


Thanks for clearifying. I know about some of the other features but
these are not their main concern. The most important reasons are the
other office-programs (Word, Outlook, PowerPoint). Easier and more
consistant formatting of charts could be something that make their
decision easier.

--
Fredrik E. Nilsen
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
problem with user defined function panjo Excel Discussion (Misc queries) 3 June 16th 06 11:18 AM
User defined functions without using VBA. [email protected] Excel Discussion (Misc queries) 0 June 13th 06 05:50 PM
user defined function help Floyd Steele Excel Worksheet Functions 1 February 2nd 06 10:47 PM
I have had difficulty in creating user defined functions in Excel MichaelG Excel Worksheet Functions 3 July 13th 05 11:59 AM
User defined charts- font size too small Bill B Charts and Charting in Excel 1 December 30th 04 06:23 PM


All times are GMT +1. The time now is 05:49 AM.

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

About Us

"It's about Microsoft Excel"