I select and copy the cells C4:I26
when I click on a button copiar texto
and I paste them as an image. This is already happening.
I need this image to have a certain hyperlink when I paste it (on Outlook). So a click on the image opens this website.
Sub copiar_texto()
Sheets("Planilha2").Select
Range("C4:I26").Select
Application.CutCopyMode = False
Selection.CopyPicture Appearance:=xlScreen, Format:=xlBitmap
Selection.Copy
Application.CutCopyMode = False
Selection.CopyPicture Appearance:=xlScreen, Format:=xlBitmap
Sheets("Planilha1").Select
Range("F34").Select
ActiveSheet.Shapes.Range(Array("Rounded Rectangle 4")).Select
Selection.OnAction = "copiar_texto"
Range("H31").Select
ActiveWindow.SmallScroll Down:=-30
End Sub