Something like:
========
Dim RNG as Range
Set RNG = Range("B6", Range("B6").SpecialCells(xlCellTypeLastCell))
RNG.Sort Key1:=Range("B6"), Order1:=xlDescending
=======
Does that help you get started?
--
"Actually, I *am* a rocket scientist." -- JB
(
www.MadRocketScientist.com)
Your feedback is appreciated, click YES if this post helped you.
"brichard429" wrote:
> I want to sort a table that grows with additional data. The top left value
> never changes and is Range("B6") but the bottom right cell will change as the
> table grows. How do I go about defining the range?
> --
> Bernie