You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SimpleMacro.vba 161B

12345678910
  1. Sub TestMacro()
  2. '
  3. ' TestMacro Macro
  4. ' This is a test macro
  5. '
  6. '
  7. ActiveCell.FormulaR1C1 = "This is a macro workbook"
  8. Range("A2").Select
  9. End Sub