Hello,
I want to fill multiple Cells at once that are 5 columns off from each other, so I use
Union(Cells(2, i), Cells(2, i + 5), Cells(2, i + 10), ...) = "Text"
But the amount of cells is variable. Everytime we need a new set of columns, I need to change the code to implement them.
What I...