Hi,
I have this code, which someone provided me.
(…)
NewWS.Cells(xx% + 1, 2).Value = Sheets(xx%).Range("c271").Value
(…)
My goal is to have in NewWS.Cells(xx% + 1, 2) a link instead of the value.
Any help is most welcome.
Bernie Deitrick - 13 May 2008 17:18 GMT
Raul,
NewWS.Cells(xx% + 1, 2).Formula = "='" & Sheets(xx%).Name & "'!C271"
HTH,
Bernie
MS Excel MVP
> Hi,
> I have this code, which someone provided me.
[quoted text clipped - 3 lines]
> My goal is to have in NewWS.Cells(xx% + 1, 2) a link instead of the value.
> Any help is most welcome.