Scott has attended:
Excel VBA Intro Intermediate course
Excel VBA
How do you sort a column / range automatically?
RE: Excel VBA
Hi Scott
To sort the column automatically use
Worksheets("Sheet1").Range("A1").Sort
To sort a range automatically use
Worksheets("Sheet1").Range("A1:A10").Sort
Kind Regards