Cool, (while scratching my head) how do you use them? Meaning, I have the
following VB Code and I would like to us the Rotary Dial, what all do I need
and where does it go?
Thank and very cool.
Sub A_FirstRunDCVReport()
Application.ScreenUpdating = False
Sheets("All Divisions").Select
Columns("D

").AdvancedFilter Action:=xlFilterCopy, CopyToRange:=Range( _
"AA1"), Unique:=True
Range("AA2").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Sort Key1:=Range("AA2"), Order1:=xlAscending, Header:=xlNo, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
Range("AA2").Select
Selection.Insert Shift:=xlDown
Columns("AA:AA").Copy
Sheets("Quick Search").Select
Range("IG1").Select
ActiveSheet.Paste
Range("override").Select
Sheets("All Divisions").Select
Columns("AA:AA").Delete
Call B_DailyCash
Sheets("All Divisions").Visible = False
Sheets("Domestic").Visible = False
Sheets("Import").Visible = False
Sheets("Export").Visible = False
Sheets("Quick Search").Select
Range("E2:S2").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Range("C5").Select
Application.CutCopyMode = False
Sheets("How to...").Select
Range("A1").Select
MsgBox ("The update is now complete.")
End Sub