Set a string to a cell address then reference cell address by string

Automater

New Member
Joined
Dec 29, 2022
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
Hi everyone,

I've written all of the scripts I need but I'm looking to futureproof them.

For context, I do Amazon Ads and I download Amazon's reports, filter columns to find the rows I need, do what I need to, then re-upload to apply the changes.

The bulk of my scripts involve filtering data by columns, e.g. Column B is 'Entity', R is 'State', O is 'Bids', etc.

The problem is that Amazon is in control of these report structures and if they decide to add new columns or remove old ones, then my scripts will break because columns will be shifted around, and it will be a PAIN to have to go in, find each Column reference by letter, then change each to the new Column letter. This is a dreadful thought, lol.

The only way I can conceptualize fixing this is to make an array of all column headers. Then, for each column header, search all column headers, and set each column header string to equal the cell reference where it's found. Then I'd need to be able to reference the respective ranges using the header strings.

E.g.
Assuming the column header 'Entity' is B1:
The script will make an array of all column header strings (from A1 to the last column header)
The script will then loop through the array, one column header string at a time, and search for each string in the entire column header range (i.e. from A1 to the last column header)
For each column header, it will set the respective string to equal the cell address where it's found
e.g. When looping through the array, and i = 2, it will search for 'Entity' in all the column headers, then when it finds it, it will set the string 'Entity' to equal the address, which in this example is B1 (well I'll have to use the row number and column number referencing method instead).

My huge assumption is that instead of referencing columns using their letters throughout my scripts (e.g. 'B1'), which Amazon can change at any time, I can use strings (e.g. 'Entity') instead to refer to the range to do my filtering, copy-pastes, etc. This way, even if Amazon changes column headers, my script will find and set as needed to adapt.

I tried something like the above a few weeks ago but it didn't work (and I deleted my attempt which I now regret). Any advice on how to approach this is appreciated, whether I'm on the right track, or you want to point me in the right direction. Hate to ask someone to write the code for me but I'd appreciate all the help I can get. Thanks!
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Oh, I should add, what I do have in the mean time is an array to loop through headers and return a message box if a particular header is out of place. At least that will alert me that I should expect the output to be incorrect.
 
Upvote 0

Forum statistics

Threads
1,215,241
Messages
6,123,824
Members
449,127
Latest member
Cyko

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top