$$Excel-Macros$$ Charts to Powerpoint, CommandBars.ExecuteMso "PasteSourceFormatting" Automation Error

2015-11-27 Thread Janek
Hi!

I have a problem with a copying macro that moves charts from excel to 
powerpoint. It is based on one of the many existing macros out there - i 
just changed a couple of settings and instead of placing metapictures, it 
now uses the command bar paste button to keep the charts in powerpoint 
editable. 

The problem is, that either powerpoint stops working (stops responding and 
tries looking for a "solution") or an "Automation Error" in Excel appears. 
This usually happens after 2 or 3 successful cycles through the loop.

Anybody an idea on how to solve this? I wasn't able to find any hint on 
that online. I am using the most recent Office package with all updates 
installed, Powerpoint Reference activated in Excel on Windows 10...

Thank you very much!

Janek


Sub PowerPoint()

Dim newPowerPoint As PowerPoint.Application
Dim ActiveSlide As PowerPoint.Slide
Dim Cht As Excel.ChartObject


customerFilename = "C:\LA_Template.pptx"
Set newPowerPoint = New PowerPoint.Application
newPowerPoint.Visible = msoTrue
newPowerPoint.Presentations.Open Filename:=customerFilename

'Show the PowerPoint'
 newPowerPoint.Visible = msoTrue
For Each Cht In Sheets("Graphs").ChartObjects


'Add a new slide where we will paste the chart'
newPowerPoint.ActivePresentation.Slides.Add newPowerPoint.
ActivePresentation.Slides.Count + 1, ppLayoutText
newPowerPoint.ActiveWindow.View.GotoSlide newPowerPoint.
ActivePresentation.Slides.Count
Set ActiveSlide = newPowerPoint.ActivePresentation.Slides(
newPowerPoint.ActivePresentation.Slides.Count)

'Copy the chart and paste it into the PowerPoint as a Metafile 
Picture'
Cht.Select
ActiveChart.ChartArea.Copy
'On Error Resume Next

'newPowerPoint.ActiveWindow.Activate
'newPowerPoint.ActiveWindow.ViewType = ppViewSlide'
newPowerPoint.Visible = True
newPowerPoint.CommandBars.ExecuteMso "PasteSourceFormatting"
'   
 ActiveSlide.Shapes.PasteSpecial(DataType:=ppPasteMetafilePicture).Select'
DoEvents: DoEvents: DoEvents: DoEvents: DoEvents: DoEvents: 
DoEvents

newPowerPoint.ActivePresentation.Slides(newPowerPoint.
ActivePresentation.Slides.Count).Shapes(2).Delete
'   Set the title of the slide the same as the title of the chart'
newPowerPoint.ActivePresentation.Slides(newPowerPoint.
ActivePresentation.Slides.Count).Shapes(1).TextFrame.TextRange.Text = Cht.
Chart.ChartTitle.Text

'   Adjust the positioning of the Chart on Powerpoint Slide'
newPowerPoint.ActivePresentation.Slides(newPowerPoint.
ActivePresentation.Slides.Count).Shapes(2).Select
With newPowerPoint.ActivePresentation.Slides(newPowerPoint.
ActivePresentation.Slides.Count).Shapes(2)
.Left = 15
.Top = 60
.Height = 300
.Width = 680
End With
Next
End Sub


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.


Re: $$Excel-Macros$$ Charts Title Font Size Change via VBA

2013-08-21 Thread xlstime
Try This

Sub Chart_Titles()

Dim ch As ChartObject

  For Each ch In ActiveSheet.ChartObjects

ch.Activate
ch.Chart.ChartTitle.Select
Selection.Format.TextFrame2.TextRange.Font.Name = Arial
Selection.Format.TextFrame2.TextRange.Font.Size = 14
 Next


End Sub





.

Enjoy
Team XLS



On Wed, Aug 21, 2013 at 10:34 AM, Prafull Jadhav
prafulltjad...@gmail.comwrote:

  Dear All,

 Very Good Morning,

 I have made 10 charts and now I want to change the  Size of Font  14 to 9
 for Chart Title.

 is it possible to change it through the VBA

 for example

 For each

 For Next

 Do until
   if yes , Please  provide the same

   Thanks in Advance

 Regards,

 Prafull Jadhav.

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Charts Title Font Size Change via VBA

2013-08-21 Thread Prafull Jadhav
Thanks a lot Sir...It working Fine


On Wed, Aug 21, 2013 at 1:12 PM, xlstime xlst...@gmail.com wrote:

 Try This

 Sub Chart_Titles()

 Dim ch As ChartObject

   For Each ch In ActiveSheet.ChartObjects

 ch.Activate
 ch.Chart.ChartTitle.Select
 Selection.Format.TextFrame2.TextRange.Font.Name = Arial
 Selection.Format.TextFrame2.TextRange.Font.Size = 14
  Next


 End Sub





 .

 Enjoy
 Team XLS



 On Wed, Aug 21, 2013 at 10:34 AM, Prafull Jadhav prafulltjad...@gmail.com
  wrote:

   Dear All,

 Very Good Morning,

 I have made 10 charts and now I want to change the  Size of Font  14 to
 9  for Chart Title.

 is it possible to change it through the VBA

 for example

 For each

 For Next

 Do until
   if yes , Please  provide the same

   Thanks in Advance

 Regards,

 Prafull Jadhav.

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


Re: $$Excel-Macros$$ Charts Title Font Size Change via VBA

2013-08-21 Thread Prafull Jadhav
Dear Sir,

I have  querys 

1) I have not used  Dim Declaration and run below vba it working fine..

is there need to use Dim here?

Dim x As ChartObject

For Each x In ActiveSheet.ChartObjects
x.Activate
x.Chart.ChartTitle.Select
Selection.Format.TextFrame2.TextRange.Font.Name = Arial
Selection.Format.TextFrame2.TextRange.Font.Size = 5
Next x


2) while i am using recording macro below two lines are not reflecting in
Recorded Statement

 Selection.Format.TextFrame2.TextRange.Font.Name = Arial
Selection.Format.TextFrame2.TextRange.Font.Size = 5

then  how i could i get further property
for example .
if

When i type Range( then it's properly is reflecting

when when i type

Selection.format ...further properly is not reflecting ..

Is there any way to show properly . such as ...when i type Range(). it show
properly..
Regards,
Prafull





End Sub


On Wed, Aug 21, 2013 at 2:25 PM, Prafull Jadhav prafulltjad...@gmail.comwrote:

 Thanks a lot Sir...It working Fine


 On Wed, Aug 21, 2013 at 1:12 PM, xlstime xlst...@gmail.com wrote:

 Try This

 Sub Chart_Titles()

 Dim ch As ChartObject

   For Each ch In ActiveSheet.ChartObjects

 ch.Activate
 ch.Chart.ChartTitle.Select
 Selection.Format.TextFrame2.TextRange.Font.Name = Arial
 Selection.Format.TextFrame2.TextRange.Font.Size = 14
  Next


 End Sub





 .

 Enjoy
 Team XLS



 On Wed, Aug 21, 2013 at 10:34 AM, Prafull Jadhav 
 prafulltjad...@gmail.com wrote:

   Dear All,

 Very Good Morning,

 I have made 10 charts and now I want to change the  Size of Font  14 to
 9  for Chart Title.

 is it possible to change it through the VBA

 for example

 For each

 For Next

 Do until
   if yes , Please  provide the same

   Thanks in Advance

 Regards,

 Prafull Jadhav.

 --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be?
 It’s =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google
 Groups MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.


  --
 Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s
 =TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @
 https://www.facebook.com/discussexcel

 FORUM RULES

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.
 2) Don't post a question in the thread of another member.
 3) Don't post questions regarding breaking or bypassing any security
 measure.
 4) Acknowledge the responses you receive, good or bad.
 5) Jobs posting is not allowed.
 6) Sharing copyrighted material and their links is not allowed.

 NOTE : Don't ever post confidential data in a workbook. Forum owners and
 members are not responsible for any loss.
 ---
 You received this message because you are subscribed to the Google Groups
 MS EXCEL AND VBA MACROS group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to excel-macros+unsubscr...@googlegroups.com.
 To post to this group, send email to excel-macros@googlegroups.com.
 Visit this group at http://groups.google.com/group/excel-macros.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is 

$$Excel-Macros$$ Charts Title Font Size Change via VBA

2013-08-20 Thread Prafull Jadhav
Dear All,

Very Good Morning,

I have made 10 charts and now I want to change the  Size of Font  14 to 9
for Chart Title.

is it possible to change it through the VBA

for example

For each

For Next

Do until
  if yes , Please  provide the same

  Thanks in Advance

Regards,

Prafull Jadhav.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.


$$Excel-Macros$$ Charts

2013-06-25 Thread Krishnaraddi V. Madolli
Hi,

Is there a way to make default font for charts we prepare in excel every time. 
At present it is Calibri, I want to change it Century Gothic style for all the 
new charts I create.

Regards,
Krishnaraddi V Madolli.
CONFIDENTIALITY NOTICE: This message and any attachment are confidential and 
may also be privileged. If you are not the intended recipient of this e-mail 
you may not copy, forward, disclose or otherwise use it or any part of it in 
any form whatsoever. If you are not the intended recipient please telephone or 
e-mail the sender and delete this message and any attachment from your system.

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/groups/opt_out.




$$Excel-Macros$$ Charts create

2013-05-31 Thread Chaya
Hi Experts,

  I have been trying to plot a chart for the attached datas. i have
tried so many charts, like bar, line pie etc and etc, i am unable to plot
the chart in meaningful way.

  Can somebody please suggest me to plot the chart such that everyone can
easily understand in one attempt.
Experts pfa.

Thanks
Regards,
Chaya

The excel learner  :-)

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups MS 
EXCEL AND VBA MACROS group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Graphs.xlsx
Description: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet


Re: $$Excel-Macros$$ Charts

2012-05-06 Thread dguillett1

Provide a file



Don Guillett
Microsoft MVP Excel
SalesAid Software
dguille...@gmail.com
-Original Message- 
From: joseph.cam...@gmail.com

Sent: Saturday, May 05, 2012 2:23 AM
To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Charts


Sent on my BlackBerryŽ from Vodafone

-Original Message-
From: joseph.cam...@gmail.com
Sender: excel-macros@googlegroups.com
Date: Sat, 5 May 2012 04:32:26
To: excel-macros@googlegroups.com
Reply-To: excel-macros@googlegroups.com
Subject: $$Excel-Macros$$ Charts

Hi,

I create a lot of stacked charts and I spend a lot of time formatting the 
overlapped numbers.


I need a macro that will move numbers that overlap other numbers in a 
stacked chart.


Thanks,
Joseph
Sent on my BlackBerryŽ from Vodafone

--
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please 
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will 
not get quick attention or may not be answered.


2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security 
measure.


4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited.


NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.


--
To post to this group, send email to excel-macros@googlegroups.com

--
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please 
Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will 
not get quick attention or may not be answered.


2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security 
measure.


4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited.


NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.


--
To post to this group, send email to excel-macros@googlegroups.com 


--
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in signatures are prohibited. 


NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Charts in Excel

2012-03-05 Thread Shrinivas Shevde
Dear Experts
I want a help for charts.
I wants  to make a 3 charts in one graph,but problem is that the ranges are
different for eg ranges are as follows
range -1  =: 13 to 15
 range -2  =: 19 to 22
range -1  =: 28 to 32

If i make all the charts in one graph then the scale will taken as from
(min 13 to max 32) which is very large scale suppose there is a reading in
the range (12.8, 13.1, 12.5) due to large scale it doesnot show difference
on graph
Actually I want is that Can I adjust the Y scale Like (13 to 15 then 19 to
22 and then 28 to 32) as there is no reading in between

DAta sheet and graph attached (chart1 sheet 1)

Waiting for reply

Thanks in advance

Ragards
Shrinivas


On Wed, Feb 29, 2012 at 12:55 PM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 THanks Abhishek ,its also done


 On Wed, Feb 29, 2012 at 12:53 PM, Abhishek Jain abhishek@gmail.comwrote:

 http://peltiertech.com/Excel/Charts/ComboCharts.html


 On Wed, Feb 29, 2012 at 11:45 AM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 have already  downloaded all and have learnt some charts from chandoo
 org.

 Thanka

  On Wed, Feb 29, 2012 at 11:15 AM, NOORAIN ANSARI 
 noorain.ans...@gmail.com wrote:

 Hi Priyanka,

 Please visit on Chandoo site, he has good colletions of charts

 see below link..
 http://chandoo.org/wp/2009/11/30/quick-chart-formatting/

  On Wed, Feb 29, 2012 at 10:51 AM, PrIyAnKa p.dhamsa...@gmail.comwrote:

 Dear Team

 Kindly provide link or excel help files to create different charts,

 This is just for learning purpose so not sharing any excel file

 Regards
 Priyanka

 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like
 Please Help, Urgent, Need Help, Formula Problem, Code Problem, and Need
 Advice will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum
 in signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




 --
 Thanks  regards,
 Noorain Ansari
  ** http://excelmacroworld.blogspot.com/*http://noorainansari.com/*
 *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/


 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a 

$$Excel-Macros$$ Charts in Excel

2012-02-28 Thread PrIyAnKa
Dear Team

Kindly provide link or excel help files to create different charts,

This is just for learning purpose so not sharing any excel file

Regards
Priyanka

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Charts in Excel

2012-02-28 Thread NOORAIN ANSARI
Hi Priyanka,

Please visit on Chandoo site, he has good colletions of charts

see below link..
http://chandoo.org/wp/2009/11/30/quick-chart-formatting/

On Wed, Feb 29, 2012 at 10:51 AM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 Dear Team

 Kindly provide link or excel help files to create different charts,

 This is just for learning purpose so not sharing any excel file

 Regards
 Priyanka

 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




-- 
Thanks  regards,
Noorain Ansari
 *http://noorainansari.com/* http://excelmacroworld.blogspot.com/
*http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/

-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Charts in Excel

2012-02-28 Thread PrIyAnKa
have already  downloaded all and have learnt some charts from chandoo org.

Thanka

On Wed, Feb 29, 2012 at 11:15 AM, NOORAIN ANSARI
noorain.ans...@gmail.comwrote:

 Hi Priyanka,

 Please visit on Chandoo site, he has good colletions of charts

 see below link..
 http://chandoo.org/wp/2009/11/30/quick-chart-formatting/

 On Wed, Feb 29, 2012 at 10:51 AM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 Dear Team

 Kindly provide link or excel help files to create different charts,

 This is just for learning purpose so not sharing any excel file

 Regards
 Priyanka

 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




 --
 Thanks  regards,
 Noorain Ansari
  ** http://excelmacroworld.blogspot.com/*http://noorainansari.com/*
 *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Charts in Excel

2012-02-28 Thread Abhishek Jain
http://peltiertech.com/Excel/Charts/ComboCharts.html


On Wed, Feb 29, 2012 at 11:45 AM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 have already  downloaded all and have learnt some charts from chandoo org.

 Thanka

 On Wed, Feb 29, 2012 at 11:15 AM, NOORAIN ANSARI noorain.ans...@gmail.com
  wrote:

 Hi Priyanka,

 Please visit on Chandoo site, he has good colletions of charts

 see below link..
 http://chandoo.org/wp/2009/11/30/quick-chart-formatting/

 On Wed, Feb 29, 2012 at 10:51 AM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 Dear Team

 Kindly provide link or excel help files to create different charts,

 This is just for learning purpose so not sharing any excel file

 Regards
 Priyanka

 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




 --
 Thanks  regards,
 Noorain Ansari
  ** http://excelmacroworld.blogspot.com/*http://noorainansari.com/*
 *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.

--
To post to this group, send email to excel-macros@googlegroups.com


Re: $$Excel-Macros$$ Charts in Excel

2012-02-28 Thread PrIyAnKa
THanks Abhishek ,its also done

On Wed, Feb 29, 2012 at 12:53 PM, Abhishek Jain abhishek@gmail.comwrote:

 http://peltiertech.com/Excel/Charts/ComboCharts.html


 On Wed, Feb 29, 2012 at 11:45 AM, PrIyAnKa p.dhamsa...@gmail.com wrote:

 have already  downloaded all and have learnt some charts from chandoo org.

 Thanka

 On Wed, Feb 29, 2012 at 11:15 AM, NOORAIN ANSARI 
 noorain.ans...@gmail.com wrote:

 Hi Priyanka,

 Please visit on Chandoo site, he has good colletions of charts

 see below link..
 http://chandoo.org/wp/2009/11/30/quick-chart-formatting/

 On Wed, Feb 29, 2012 at 10:51 AM, PrIyAnKa p.dhamsa...@gmail.comwrote:

 Dear Team

 Kindly provide link or excel help files to create different charts,

 This is just for learning purpose so not sharing any excel file

 Regards
 Priyanka

 --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com




 --
 Thanks  regards,
 Noorain Ansari
  ** http://excelmacroworld.blogspot.com/*http://noorainansari.com/*
 *http://excelmacroworld.blogspot.com/*http://excelmacroworld.blogspot.com/


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook.
 Forum owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


  --
 FORUM RULES (986+ members already BANNED for violation)

 1) Use concise, accurate thread titles. Poor thread titles, like Please
 Help, Urgent, Need Help, Formula Problem, Code Problem, and Need Advice
 will not get quick attention or may not be answered.

 2) Don't post a question in the thread of another member.

 3) Don't post questions regarding breaking or bypassing any security
 measure.

 4) Acknowledge the responses you receive, good or bad.

 5) Cross-promotion of, or links to, forums competitive to this forum in
 signatures are prohibited.

 NOTE : Don't ever post personal or confidential data in a workbook. Forum
 owners and members are not responsible for any loss.


 --
 To post to this group, send email to excel-macros@googlegroups.com


-- 
FORUM RULES (986+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 

$$Excel-Macros$$ charts

2011-01-08 Thread Kenil Gala




Hi Group,

i want to plot a chart Line-column on 2-Axis.
There is a option to plot this chart in custom charts in excel 2003.
But i am not able to find it in excel 2007.
there is also chart options in excel2003 where we can modify the chart and 
give names/ labels, but there is no as such option in excel2007, 

Can any one help me with this problem?


Thanks  Regards,
Kenil Gala



  

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts


$$Excel-Macros$$ Charts + select multiple rows

2010-10-12 Thread Stig Sørensen
Hi all.

I have a X-coordinate and some Y-coordinate and want to make a chart
(with macro).

X
-5
-4
-3
-2
-1
0
1
2
3
4
5


Y2
-5,307692308
-4,076923077
-2,846153846
-1,615384615
-0,384615385
0,846153846
2,076923077
3,307692308
4,538461538
5,769230769
7


Y1
-4,2
-2,6
-1
0,6
2,2
3,8
5,4
7
8,6
10,2
11,8


What I need is to select the X column - then hold down CTRL and then
select the Y2 and Y1 columns - and then make a chart.


How to do that with macro?


Best regards

-- 
--
Some important links for excel users:
1. Follow us on TWITTER for tips tricks and links : 
http://twitter.com/exceldailytip
2. Join our LinkedIN group @ http://www.linkedin.com/groups?gid=1871310
3. Excel tutorials at http://www.excel-macros.blogspot.com
4. Learn VBA Macros at http://www.quickvba.blogspot.com
5. Excel Tips and Tricks at http://exceldailytip.blogspot.com
 
To post to this group, send email to excel-macros@googlegroups.com


Like our page on facebook , Just follow below link
http://www.facebook.com/pages/discussexcelcom/160307843985936?v=wallref=ts