Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default Positioning a char in a sheet

Hi,

My dificult is to positioned a chart in a determined position in a sheet.
I know the IncrementLeft and IncrementTop functions, but don't solve my
problem.
How can I do that?


Thanks in advance

Rui


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,588
Default Positioning a char in a sheet

Have you tried the "Top" and "Left" properties ?

How is the position determined ?

Tim

--
Tim Williams
Palo Alto, CA


"Rui Álvares" wrote in message
...
Hi,

My dificult is to positioned a chart in a determined position in a sheet.
I know the IncrementLeft and IncrementTop functions, but don't solve my
problem.
How can I do that?


Thanks in advance

Rui




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 146
Default Positioning a char in a sheet

You need to specify the .Top and .Left properties of the chart's parent ChartObject.

With ActiveChart.Parent
.Left = 100
.Top = 100
End With

or

With ActiveSheet.ChartObjects(1)
.Left = 100
.Top = 100
End With

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

Rui Álvares wrote:

Hi,

My dificult is to positioned a chart in a determined position in a sheet.
I know the IncrementLeft and IncrementTop functions, but don't solve my
problem.
How can I do that?


Thanks in advance

Rui



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
Hyperlink in same sheet - positioning problem neil40 Links and Linking in Excel 1 November 27th 09 09:52 PM
FIND 1 char in cell of any 3 char =True Nastech Excel Discussion (Misc queries) 5 April 26th 08 02:17 PM
8500 cells with phone number(7 char.), wishing to add area code (10 char.) [email protected] Excel Discussion (Misc queries) 6 March 10th 06 05:13 PM
wrong positioning of data in sheet after clearcontents() Rea Excel Programming 1 June 21st 05 12:22 PM
Recalculate sheet & Positioning text boxes George Andrews Excel Programming 1 May 17th 05 10:56 PM


All times are GMT +1. The time now is 10:12 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"