Puts emphasis on every Nth row's border. The major improvement was making the macro use the current selection as its range to work on. Extra emphasis is placed on the top and bottom edges of the selected area.
Same as everyN excep that it works on columns instead of rows.
The old grade sorting macro made to work with a user selected area in the spreadsheet.
The newer macros have been bundled together in one file wich has had a toolbar attached to it. The toolbar contains three Macro invoking buttons.
Set a = Selection ' save current selection
If a.Address = a.EntireColumn.Address Then
MsgBox "Please select entire rows" & vbLf & _
"or a finite range of cells" & vbLf & _
"rather than entire columns.", vbCritical
' vbInformation is another type of message
Exit Sub
End If