There's a macro in my workbook, here's an extract:
Range("K19:L30").Select
Selection.Copy
I copy this range and paste it two columns to the left
Range("G19:H30").Select
Selection.PasteSpecial ...etc.
The problem is that the range constantly changes, is there any way to determine the range without me having to check on it manually every time, say based on some principle (e.g. color)?
Range("K19:L30").Select
Selection.Copy
I copy this range and paste it two columns to the left
Range("G19:H30").Select
Selection.PasteSpecial ...etc.
The problem is that the range constantly changes, is there any way to determine the range without me having to check on it manually every time, say based on some principle (e.g. color)?