How to Copy formats and formulas in vba?
This will probably work...
r = Range("MtrCounter").Value
c = Range("ExpRow").Columns.Count
With Sheet2
.Range("ExpRow").Copy .Range(.Cells(1, 1), .Cells(r, c))
.Range(.Cells(1, 1), .Cells(r, c)) = Range("ExpRow").Formula
End With
--
Rick (MVP - Excel)
"DK" wrote in message
...
The following statement copies the formulas in one range to another range
of cells.
How can I also copy the formats of "ExpRow"?
Thank you.
...
r = Range("MtrCounter").Value
c = Range("ExpRow").Columns.Count
With Sheet2
.Range(.Cells(1, 1), .Cells(r, c)) = Range("ExpRow").Formula
End With
...
|