Hi,
The above code as part of a wider range code Copies data from a selection of workbooks and pastes them into a new workbook one after the other.
The source workbooks contain cells with mixed formatting and formula.
Unfortunately the source sheets often contain formula quoted by $ sign. This means when I use the PasteAll above it works for everything except for where there is constrained formula.
is there a way to set up a paste such I paste in all (thus keeping the cell mixed formula) but ONLY ignore formula.
Many thanks.
Code:
SourceRange.Copy
DestRange.PasteSpecial Paste:=xlPasteAll
The above code as part of a wider range code Copies data from a selection of workbooks and pastes them into a new workbook one after the other.
The source workbooks contain cells with mixed formatting and formula.
Unfortunately the source sheets often contain formula quoted by $ sign. This means when I use the PasteAll above it works for everything except for where there is constrained formula.
is there a way to set up a paste such I paste in all (thus keeping the cell mixed formula) but ONLY ignore formula.
Many thanks.