I want to add a formula to the ActiveCell. The formula shall contain 2 variables one being a string the other one being a range.
i.e.
x = "This is my string variable"
y = cell.Address
I'm trying to achieve something like:
ActiveCell.Formula = "=" & x & y
The cell should contain the string variable and the value of the variable containing the address. The behavior should be the same as if I would type ="Some string"&$a$1
into a cell.