Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

Wiki MarkupIn VBAProject, in \ [Modules\]->Module2 Code section, I find these macros that were, probably, auto-recorded by Rob when carefully running through the canonical set of keystrokes in Macro recorder.    Evidently the \ [Modules\]->Module1 section has the code for the results autoformatting, which in the etc-surveys sheet at least was not being used.    But it is concatenated to the list of routines below. \\ \\

Sub ResultsAutoFormatWeek()
'
' Autoformatweek Macro
' Macro recorded 3/2/2004 by smyser -- auto formats this weeks comments table
'
' Keyboard Shortcut: Ctrl+f
'
    Selection.AutoFormat Format:=xlRangeAutoFormatList3, Number:=True, Font:= _
        True, Alignment:=True, Border:=True, Pattern:=True, Width:=True
    Columns("C:C").ColumnWidth = 6.14
'    ActiveWorkbook.Save
End Sub

...