Nicobisgaard60
New Member
- Joined
- Sep 4, 2016
- Messages
- 14
I'm sure i have done this before but i have forgot the Syntax.
I Want Cell A1 to be equal to the content of Cell B1. Not just the current "Value" but an actual reference.
Range("A1").Value="=B1"
I need to use it in a loop so the syntax has to be somewhat more clever than the above
Currently the macro reads:
For i = 1 To 7
Cells(27, i + 58).Value = Cells(2, i * 2 + 58).Value
Next i
But instead of 58).Value i want the cell reference.
Any help appreciated.
I Want Cell A1 to be equal to the content of Cell B1. Not just the current "Value" but an actual reference.
Range("A1").Value="=B1"
I need to use it in a loop so the syntax has to be somewhat more clever than the above
Currently the macro reads:
For i = 1 To 7
Cells(27, i + 58).Value = Cells(2, i * 2 + 58).Value
Next i
But instead of 58).Value i want the cell reference.
Any help appreciated.