ขออนุญาตสอบถามการใส่คำอธิบายแผนภูมิด้วย VBA
Posted: Wed May 29, 2024 10:48 am
ขออนุญาตสอบถามการใส่คำอธิบายแผนภูมิด้วย VBA ไว้ด้านล่างของแผนภูมิ ผมใช้ code ด้านล่างแต่ติดที่บรรทัด
รบกวนขอคำแนะนำด้วย ของฃบพระคุณครับ
Code: Select all
.Legend.Position = xlLegendPositionBottom
Code: Select all
Sub copychart()
Dim ws As Worksheet
Dim Chrt1 As ChartObject
Dim chrt2 As ChartObject
Dim chrt As Chart
Dim cht As ChartObject
' Worksheets("Chart").Activate
' ActiveSheet.ChartObjects.Delete
Set ws = Worksheets("Chart")
Set Chrt1 = Sheets("Main").ChartObjects(1)
Chrt1.Copy
ws.Paste Destination:=ws.Range("A1")
Set chrt2 = ws.ChartObjects(1)
With chrt2.Chart.Parent
.Height = 450
.Width = 1250
End With
With chrt2.Chart
With .Axes(xlCategory)
.TickLabels.Orientation = 90
.Legend.Position = xlLegendPositionBottom
End With
End With
With chrt2.Chart.Axes(xlValue)
.HasTitle = True
With .AxisTitle
.Caption = "บาท"
.Font.Name = "Arial"
.Font.Size = 16
End With
End With
End Sub