snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
มันโชว์ Run time Error 1004 copy picture method of range class failed เวลาผม Export Range to JPG ครับ
Sub AREA()
Worksheets("AREA").Activate
'ActiveWindow.Zoom = 300
LocationFile = Sheets("LocationFile").Range("A10")
Name_Range = Range("AREA").Select
With Selection [font].CopyPicture Appearance:=xlScreen, Format:=xlPicture[/font] <<<<< บรรทัดนี่ครับ
With ActiveSheet.ChartObjects.Add(Left:=.Left, Top:=.Top, Width:=.Width, Height:=.Height)
.Name = "TempChart"
.Activate
End With
End With
ActiveChart.Paste
With ActiveSheet.ChartObjects("TempChart")
.Chart.Export LocationFile
.Delete
ActiveWindow.Zoom = 80
End With
End Sub
You do not have the required permissions to view the files attached to this post.