The following line of code will copy the result of a formula in column K to the same row in column B, where r is a variable with the row number.
Cells(r, "B") = Cells(r, "K").Value
How do you determine what row you want to perform this on? Or do you want to do the entire column?
I really don't understand what you mean by "without screwing up the formula that is there, just copy paste the result." Copying from K certainly won't have any effect on the formula there, and if you mean B, you can't paste a value into a cell without replacing any formula that might exist there.
Bookmarks