Hi and Thanks in advance!
Say I have a range in a book,
range("C5:Z1540") 'just for this eg
If I do create an array like:
If I go to other Workbook using VBA, and I do paste the array, like:
The Activesheet does not keep the formatting, the Activesheet gets new formats
ps:
I do know how to copy and paste values.
I know how to change cells formatting.
I know how to move/copy a sheet to a new book
Say I have a range in a book,
range("C5:Z1540") 'just for this eg
If I do create an array like:
Code:
dim aMyArray (): aMyArray= range("C5:Z1540").value
Code:
Activesheet.Cells(1, 1).Resize(UBound(MyArray, 1), UBound(MyArray, 2)) = MyArray
Is it possible to paste one array, somewhere but with the destination formats ??
I mean not changing the destination formats
I mean not changing the destination formats
ps:
I do know how to copy and paste values.
I know how to change cells formatting.
I know how to move/copy a sheet to a new book
I do not want to do so
I am trying to know if paste as values is possible when pasting one array