I have a macro that applies a previously saved address of some cell as a cell reference to another cell. Although this isn't my exact code, the effect is the same as the following:
This however locks the cell reference using $'s. Is there anyway to do something similar and not include the $'s in the formula?
Code:
ActiveCell.Offset(1, 0).Value = "=" & ActiveCell.Address
This however locks the cell reference using $'s. Is there anyway to do something similar and not include the $'s in the formula?