I created the following code to copy over some information, except that I just need the values copied and not the formula. I think I need to add .value, but not sure where it would go. any suggestions?
r = commentsstart
c = 0
c = c + 1
y = c + 103
TestRange6 = "A" + r
r = r + 1
Do While sheets(destsh).Range(TestRange6) <> 0
reportlocation = "A" + y
sheets(destsh).Range(TestRange6).Copy sheets(destsh).Range(reportlocation) ****thinking .value should go at the end of this line.
y = y + 1
reportlocation = "A" + y
Loop
r = commentsstart
c = 0
c = c + 1
y = c + 103
TestRange6 = "A" + r
r = r + 1
Do While sheets(destsh).Range(TestRange6) <> 0
reportlocation = "A" + y
sheets(destsh).Range(TestRange6).Copy sheets(destsh).Range(reportlocation) ****thinking .value should go at the end of this line.
y = y + 1
reportlocation = "A" + y
Loop