If you are wondering how to select a dynamic range among columns A:B, here's one suggestion. It assumes your data starts in cell A2.
If this is not what you want, please repost:
Range(("A2"), Range("B65536").End(xlUp)).Select
HTH
Tom U.
Thanks Tom. That goes some of the way, but will leave me
having to edit the macro whenever I add more data to the
sheet. I really want the macro to pick up all the data
down to the first blank cell without me having to input
a reference as to where that is.
thanks
chris
This macro does what you want then, by selecting the range no matter how many rows you add to it. Run the code, then add more rows to your range, and run it again. It should select the entire data-occupying range each time.
Maybe I am misunderstanding what you want, so please repost if I am answering a question you are not asking.
Tom U.
Tom;
No, you understand me better than I do. I didn't recognise the correct
answer when I saw it - its so simple! Thanks for the help
Chris