C
chris_culley
Hi all,
I want to align an autoshape using vba with some cells on a
spreadsheet... I picked up the following from this newsgroup a while
back:
"Use something like the following to align the top left hand corner of
the
copied shape to the G column and the active cell row:
Sheets("Data").Shapes("Up Arrow").Copy
ActiveSheet.Paste
With Cells(ActiveCell.Row, "G")
Selection.Top = .Top
Selection.Left = .Left
End With
John Green (Excel MVP) "
which is great - works perfectly (cheers John!), but I want to align to
the centre right of the cell, not the top left! is this possible?
Many thanks
chris
I want to align an autoshape using vba with some cells on a
spreadsheet... I picked up the following from this newsgroup a while
back:
"Use something like the following to align the top left hand corner of
the
copied shape to the G column and the active cell row:
Sheets("Data").Shapes("Up Arrow").Copy
ActiveSheet.Paste
With Cells(ActiveCell.Row, "G")
Selection.Top = .Top
Selection.Left = .Left
End With
John Green (Excel MVP) "
which is great - works perfectly (cheers John!), but I want to align to
the centre right of the cell, not the top left! is this possible?
Many thanks
chris