C
chrismydo
Guest
bonjour
J'ai une macro dans excell qui ouvre word
copie les cellules desirees et dimensionne le texte
avec ce script :
Range('A1:G66').Copy
Set ww = CreateObject('word.application')
ww.Visible = True
Set wdDoc = ww.Documents.Add
wdDoc.PageSetup.TopMargin = 10
wdDoc.PageSetup.LeftMargin = 48
wdDoc.PageSetup.RightMargin = 42
wdDoc.PageSetup.BottomMargin = 10
ww.Selection.PasteSpecial Link:=False, DataType:=wdpastebitmap, Placement:=wdInLine
Je voudrais copier un texte 'abcd...' a l'endroit bottommargin. Comment faire ?
J'ai une macro dans excell qui ouvre word
copie les cellules desirees et dimensionne le texte
avec ce script :
Range('A1:G66').Copy
Set ww = CreateObject('word.application')
ww.Visible = True
Set wdDoc = ww.Documents.Add
wdDoc.PageSetup.TopMargin = 10
wdDoc.PageSetup.LeftMargin = 48
wdDoc.PageSetup.RightMargin = 42
wdDoc.PageSetup.BottomMargin = 10
ww.Selection.PasteSpecial Link:=False, DataType:=wdpastebitmap, Placement:=wdInLine
Je voudrais copier un texte 'abcd...' a l'endroit bottommargin. Comment faire ?