aboutsummaryrefslogtreecommitdiffstats
path: root/test-data/spreadsheet/SimpleMacro.vba
blob: 03107cae5d9498d8353efb8b602f89b399fe0d63 (plain)
1
2
3
4
5
6
7
8
9
10
Sub TestMacro()
'
' TestMacro Macro
' This is a test macro
'

'
    ActiveCell.FormulaR1C1 = "This is a macro workbook"
    Range("A2").Select
End Sub