I'm using a custom function that I found here to retroactively set values in other cells based on new information in later cells. The issue is, however, that the input of SetCellValue is a cell reference in quotes, like this:
SetCellValue("G3",16)
I need a way that I can change the reference in quotes (G3 in this example) to whichever cell I need to work with. I've tried using different logical tests and concatenation to no avail. I'm also going to be working with a very large set of data, so manually changing the references is pretty unfeasible. Any ideas?