View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
brichard429 brichard429 is offline
external usenet poster
 
Posts: 9
Default Defining a range

Thank you both for your suggestions, I used them to come up with this:
Range(Range("B6"), Range("B6").End(xlDown).End(xlToRight)).Select
which work for me.
--
Bernie


"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