Naug » 06.10.2004 (Ср) 12:07
ничего у меня нигде не плавает - яж говорю - табличка, а не картинка, и проблема не в том что она поверх текста, а в том что она как-бы смещена вправо и я хочу её сместить влево, но не понимаю как работает moveleft(или я не тот метод использую?) - в мувлефт параметры типа "слово", "знак", а мне нужно в сантиметрах или там процентах, а ещё лучше чтоб абсолютно на границу левого поля сдвигалось. Вот, нашел точно такой вопрос по-английски (может там четче прописано)
I have some excel vba that produces different types of reports from a form. One of the options is to export the data to word. In order to do this I copy the part of the spreadsheet and paste it into word using the following code:
Set wordobj = CreateObject("Word.Application")
With wordobj
...
Worksheets("chartdata").Select
Worksheets("chartdata").Range("A1:G19").Select
Selection.Copy
ActiveWindow.WindowState = xlNormal
ActiveWindow.WindowState = xlMaximized
.typeparagraph
.typeparagraph
.ParagraphFormat.Alignment = 0
.Paste
the problem is that the table spills over the right hand side of the page. I need to move the table to the left slightly so that all the cells fit on the page. Is there any way to either change the word page indents or select the table and move it?