MS Excel - Offset function when using Macro to enter data?
I have created a Macro that takes data from two external Excel documents, and then tabulates them in a master excel sheet. My issue is that this is done on a daily basis; but the data overwrites the same line over and over again.
So:
Col A Col B Col C Col D Col E Col F Col G
June 1 | June 2 | June 3 | June 4 | TODAY | TOMORROW |
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Job 1 | 95% | 93% | 98% | 91% | 78% |
Job 2 | 92% | 93% | 95% | 91% | 88% |
If I were to run my Macro, it always overwrites the TODAY column (column E); When tomorrow comes, and I run the same Macro, it will overwrite Column E, again and again.
Is there a way to always shift over one cell each time the Macro is run? So if I run the Macro on TODAY (Column E); and then run the Macro again it will autopopulate Column F; and then G, etc.
Please help!!!!