I was just curious if there was an easy way to almost do a cut in page with vba code. Let me explain a bit.
Lets Say we have a NamedRange Called LookUpTableData$A1:$D10
each cell in the range has different data, and by data i mean contents, not datatype.
So lets say i retrieve the range in VBA like this.
CompleteModifiedRange = Range("LookUpTableData")
'Now I make some changes to the data
CompleteModifiedRange.Cells(1,1).Value = Blah
CompleteModifiedRange.Cells(2,1).Value = Blah2
So the real question is, How can i sort of paste the entire range back in place without having to loop through all the cells and set them? Kind of like this.
Set Range("LookUpTableData").Range = CompleteModifiedRange
Is there such a way?