Is it possible to use a variable in Range?
I have some cells called test1, test2, etc
Range("test1") works like Range("A1"), but Range(variable) or Range("variable") does not work.
I want to set a variable cellName and when I loop through test1, test2, the cells called test1, and test2, does something.
Dim cellName as String
Dim rng As Range, cell As Range
Set rng = Range("C5:C8")
For each cell In rng
cellName = cell.Value
Worksheets("Sheet2").Range("cellName").Value = "Good"
Next cell

