Selctionner la derniere ligne et collage special

A

AlbatroZ

Bonjour a tous
voici une petite question,
Je copie un ligne d'une feuille excel pour faire un collage special (
transoser) dans une autre feuille excel. Je veux selctionner la
derniere lignes qui est ecrtite pour la coller toujours au meme endroit
mais j;ai une erreur dans ma Macro.
Y a t 'il qqun pour m'aider

l'erreur se situe ici : Range("C & lignes : I & lignes").Select


Sub Macro4()
'
' Macro4 Macro
' Macro recorded 15/05/2006 by A1004989
'
' Keyboard Shortcut: Ctrl+j

Dim lignes As Integer
lignes = Worksheets("VC Data").Cells(Rows.Count, "A").End(xlUp).Row
'
Windows("MMP Pricing Spreadsheet.xls").Activate
Range("C & lignes : I & lignes").Select
Selection.Copy
Windows("MMP index rough draft- Revised Billing.xls").Activate
Range("B7:B13").Select
Selection.PasteSpecial Paste:=xlAll, Operation:=xlNone,
SkipBlanks:=False _
, Transpose:=True
With Selection.Interior
.ColorIndex = 6
.Pattern = xlSolid
End With
End Sub
 
J

JMB

Try.
Range("C" & lignes & ":I" & lignes).Select

If that is not it, I cannot help as I can only speak English.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top