Well I decided to write a quick Macro which partially works, BUT everytime I run it comes up with a "File not found" dialogue, before actually pasting the contents I want. I guess the true value of the cell also includes the workbook name? Or something else?
Here is the code. Any ideas?
Sub copySelectionExactly()
Dim rangeSelection As Range
Dim rows As Integer
Dim columns As Integer
Dim destinationCells As Range
Set rangeSelection = Selection
rows = rangeSelection.rows.Count
columns = rangeSelection.columns.Count
Workbooks("Book3").Activate
Range("A1").Select
Set destinationCells = Range("A1")
' variables for loop
Dim i As Integer
Dim j As Integer
For j = 1 To rows
For i = 1 To columns
'MsgBox rangeSelection.Cells(j, i).Formula
Range("A1").Offset(j, i).value = rangeSelection.Cells(j, i).Formula
Next i
Next j
End Sub
Thanks in advance!
Chris