How to code these VBA lines in Applescript?

  • Thread starter sid_a via MacKB.com
  • Start date
S

sid_a via MacKB.com

Hi!

I want to code this VBA code to in Applescript

ActiveChart.Axes(xlValue).Select
With ActiveChart.Axes(xlValue)
.MinimumScale = ActiveSheet.Range("T82").Value
.MaximumScaleIsAuto = True
.MinorUnit = 0.1
.MajorUnitIsAuto = True
.Crosses = xlAutomatic
ReversePlotOrder = False
.ScaleType = xlLinear
.DisplayUnit = xlNone
End With
Selection.TickLabels.NumberFormat = "0%"


If anyone can help me out!!

Thanks.
 
Top