Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default VBA Code, My excel macro creates the charts on top of each other


HI, I have a program that creates 5 charts with series data but my
problem is that all 5 charts and aligned on top of each other. I
couldn't figure out anyway to code to put each chart to be on its own
spot, other words able to see all charts when it creates the charts..

Help.. thanks


--
osman
------------------------------------------------------------------------
osman's Profile: http://www.excelforum.com/member.php...o&userid=34226
View this thread: http://www.excelforum.com/showthread...hreadid=564336

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 324
Default VBA Code, My excel macro creates the charts on top of each other

If you will share some of your code, you stand a better chance of getting help.
--
Best wishes,

Jim


"osman" wrote:


HI, I have a program that creates 5 charts with series data but my
problem is that all 5 charts and aligned on top of each other. I
couldn't figure out anyway to code to put each chart to be on its own
spot, other words able to see all charts when it creates the charts..

Help.. thanks


--
osman
------------------------------------------------------------------------
osman's Profile: http://www.excelforum.com/member.php...o&userid=34226
View this thread: http://www.excelforum.com/showthread...hreadid=564336


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default VBA Code, My excel macro creates the charts on top of each other

Use the Top and Left properties of the ChartObject to set the
charts where you want. Using a cell reference is convenient.

Dim CHT As ChartObject
' create your chart
CHT.Top = Range("C3").Top
CHT.Left = Range("C3").Left


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com




"osman"
wrote in message
...

HI, I have a program that creates 5 charts with series data but
my
problem is that all 5 charts and aligned on top of each other.
I
couldn't figure out anyway to code to put each chart to be on
its own
spot, other words able to see all charts when it creates the
charts..

Help.. thanks


--
osman
------------------------------------------------------------------------
osman's Profile:
http://www.excelforum.com/member.php...o&userid=34226
View this thread:
http://www.excelforum.com/showthread...hreadid=564336



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default VBA Code, My excel macro creates the charts on top of each other

Use the Top and Left properties of the


"osman"
wrote in message
...

HI, I have a program that creates 5 charts with series data but
my
problem is that all 5 charts and aligned on top of each other.
I
couldn't figure out anyway to code to put each chart to be on
its own
spot, other words able to see all charts when it creates the
charts..

Help.. thanks


--
osman
------------------------------------------------------------------------
osman's Profile:
http://www.excelforum.com/member.php...o&userid=34226
View this thread:
http://www.excelforum.com/showthread...hreadid=564336



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
Autopublishing creates a bitmap of charts and text boxes Mike Excel Discussion (Misc queries) 3 September 18th 09 04:49 PM
Macro creates additional datafiles when saving copies of workbook Peter Rooney Excel Programming 23 August 16th 05 02:59 PM
selecting variable rows in a macro that creates a pivot table amarch00 Excel Programming 1 May 12th 05 03:43 PM
How to Rename a Blank Sheet that a macro Creates Darin Kramer Excel Programming 3 December 6th 04 12:55 PM
Macro that creates a directory but... Andy Excel Programming 7 November 28th 04 06:23 AM


All times are GMT +1. The time now is 06:55 PM.

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"