You can modify the code in the addin,
code in frmGraphicExporter
Private Sub m_CaptureCells()
'
' If the current selection is a range AND more than 1 cell AND a contiguous range
' then automatically create a picture of it
'
Dim strAddress As String
Dim vntShapeNames As Variant
On Error GoTo ErrCaptureCells
' check for active selection
If TypeName(Selection) = "Range" Then
If Selection.Areas.Count = 1 Then
If Selection.Cells.Count > 1 Then
Set m_rngCells = Selection
strAddress = m_rngCells.Cells(1, 1).Address(False, False, xlA1)
strAddress = strAddress & "_" & m_rngCells.Cells(m_rngCells.Rows.Count, m_rngCells.Columns.Count).Address(False, False, xlA1)
m_rngCells.CopyPicture xlScreen, xlBitmap
ActiveSheet.Paste
' pasted shape does not necessarily become the last item
' so use new selection
Set m_objCells = Selection
' Change name of cell selection image
m_objCells.Name = "EP" & m_rngCells.Cells(1, 1) '"Cells_" & strAddress
End If
End If
End If
Exit Sub
ErrCaptureCells:
Set m_rngCells = Nothing
Set m_objCells = Nothing
Exit Sub
End Sub
Bookmarks