Re: Thread linking question
no need to copy and paste, just assign the values
vb Code:
Sheets("Total").Range("A" & Rows.Count).End(xlUp)(2) = Sheets(i).UsedRange.Range("A1")
Re: Thread linking question
Quote:
Originally Posted by
westconn1
no need to copy and paste, just assign the values
vb Code:
Sheets("Total").Range("A" & Rows.Count).End(xlUp)(2) = Sheets(i).UsedRange.Range("A1")
Thank you, but now for some reason it won't copy the contents of cells E30 and F30 (numbers) only of A1 (text).
Also E30 and F30 are formulas consisting of Sum(E2:E29) and I would like to only copy the value in those two cells and not the formula. Do I need to use the 'pastespecial' command?
Re: Thread linking question
Quote:
Do I need to use the 'pastespecial' command?
there should be no need
it should just copy the value, not the formula, i have tested here, works correctly