I was given a rather large Excel file recently to use for some data entry purposes. I'm trying to perform a find/replace in this file to replace specific text with the value in the current column's heading (row 1).
I've been able to accomplish column-by-column (rather slowly) by inserting the following where applicable:
=$A1
Is there a way I can, instead, just select everything and dynamically reference the column of the current cell? I've looked into COLUMN() but I'm unsure of how to use it.
Thanks!