right now im doing swtiching back and forth constantly...
i originally ddid range("a2:a" & finalrow).copy sheets("softek upload").range("b2"), but this falls apart when the original data sheet has formulas...in the destination sheet, it gives me reference errors
so i need to paste as values
Code:
'acct
Range("i2:i" & finalrow).Copy
Sheets("softek upload").Select
Range("a2").PasteSpecial xlPasteValues
'adp code
'
Sheets("index arb").Select
Range("a2:a" & finalrow).Copy
'
Sheets("softek upload").Select
Range("b2").PasteSpecial xlPasteValues
i originally ddid range("a2:a" & finalrow).copy sheets("softek upload").range("b2"), but this falls apart when the original data sheet has formulas...in the destination sheet, it gives me reference errors
so i need to paste as values