Hi all,
I am just after a small snippet of code to help me accelerate a tedious 'quality assurance' task that is going to take me a couple of days too much data to check off.
I want to be able to quickly select a specific range of cells (cells in columns A - F) when I am in any particular row.
For example:
If I am currently in cell A6 the macro will instantly highlight cells A6:F6 but nothing else.
If I am currently in cell D1 the macro will instantly highlight cells A1:F1 but nothing else.
If I am currently in cell E200 the macro will instantly highlight cells A200:F200 but nothing else etc, etc.
I have been trying with this snippet of code but do not have it quite right.
Any help is always appreciated!
Thanks,
Milos
I am just after a small snippet of code to help me accelerate a tedious 'quality assurance' task that is going to take me a couple of days too much data to check off.
I want to be able to quickly select a specific range of cells (cells in columns A - F) when I am in any particular row.
For example:
If I am currently in cell A6 the macro will instantly highlight cells A6:F6 but nothing else.
If I am currently in cell D1 the macro will instantly highlight cells A1:F1 but nothing else.
If I am currently in cell E200 the macro will instantly highlight cells A200:F200 but nothing else etc, etc.
I have been trying with this snippet of code but do not have it quite right.
Code:
[COLOR=#000000][FONT=Consolas]ActiveSheet.Range("A:F").Select[/FONT][/COLOR]
Any help is always appreciated!
Thanks,
Milos