I'm using the below code to save a picture of an Excel table in the workbook on Sheet1 (thank you JoeMo for the help).
The next thing I would like to do is save that picture to a folder for use in other applications (most likely display in a web page via SharePoint).
Is this even possible?
Thanks in advance for your time.
The next thing I would like to do is save that picture to a folder for use in other applications (most likely display in a web page via SharePoint).
Is this even possible?
Thanks in advance for your time.
Code:
Option Explicit
Sub MacroX()
Dim sWrkBkName As String
sWrkBkName = Application.ActiveWorkbook.Name
Worksheets("CA Info").Range("C3:I142").CopyPicture xlScreen, xlBitmap
With Worksheets("Sheet1")
.Select
.Paste Destination:=Worksheets("Sheet1").Range("A1")
Selection.Name = Left(sWrkBkName, Len(sWrkBkName) - 5)
End With
End Sub