Per the title, I'm trying to set the value of one row equal to another row, all the while maintain the first row's formatting. I would like to accomplsih this without using a copy/paste method, as per my understanding, the copy/paste method is slow when dealing with large amounts of data.
Here's what I'm doing to transfer the values. Org and Sel are simply counting variables.
I've tried both the following methods to transfer the formatting, both returned errors.
Any help is appreciated!
TIA,
BD
Here's what I'm doing to transfer the values. Org and Sel are simply counting variables.
Code:
WsF.Sheets("Main Data Storage").Rows(Sel).Value2 = ThisWorkbook.Sheets("Main Data Storage").Rows(Org).Value2
I've tried both the following methods to transfer the formatting, both returned errors.
Code:
WsF.Sheets("Main Data Storage").Rows(Sel).FormatConditions = ThisWorkbook.Sheets("Main Data Storage").Rows(Org).FormatConditions
WsF.Sheets("Main Data Storage").Rows(Sel).CellFormat = ThisWorkbook.Sheets("Main Data Storage").Rows(Org).CellFormat
Any help is appreciated!
TIA,
BD