Apologies for belated response - man flu has struck for the upteenth time this year.
To overwrite the original constants you would be looking at VBA, eg:
Sub Example()
Dim vWhat As Variant, vWith As Variant
Dim rngRow As Range
Dim lngWhat As Long
vWhat = Array("PRODUCTWIDTH", "PRODUCTLENGTH")
vWith = Array("X", "Y")
With Sheets("export_all_productsTEST")
For Each rngRow In .Range(.Cells(2, "A"), .Cells(.Rows.Count, "A").End(xlUp)).Rows
With rngRow.EntireRow
For lngWhat = LBound(vWhat) To UBound(vWhat) Step 1
.Replace vWhat(lngWhat), .Cells(1, vWith(lngWhat)), xlPart, , False
Next lngWhat
End With
Next rngRow
End With
End Sub
Caveat: I'm up to my eyeballs on meds so I've little doubt the above can be improved upon.
Bookmarks