Rather than having a formula in every single cell is there any way of programmatically copying data from one workbook to the equivalent cell in another workbook. Also when new data is added to the first workbook I'd like that to be copied over also. Basically I want to have two copies of the data in separate workbooks without having to do a copy/paste in Excel or copy the workbook in Windows Explorer. I'm assuming an event handler of some sort but I'm not quite sure how to continue:
Private Sub Worksheet_Change(ByVal Target As Range)
(some sort of activate second workbook and copy data code here)
End Sub
Hope that makes sense....
Cheers !
Chris;-)
Private Sub Worksheet_Change(ByVal Target As Range)
(some sort of activate second workbook and copy data code here)
End Sub
Hope that makes sense....
Cheers !
Chris;-)