I have read articles that have led me to change the first line into a variable but I need the "n94" to be a variable as well. It will always be 7 lines up and on the N column. I have to re-edit this in the future to 6 lines up etc... Trying to concatenate memo notes and its taking way too long with the amount of data.
Range("B101").Select
Selection.Copy
Range("N94").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Rows("95:101").Select
Application.CutCopyMode = False
Selection.Delete Shift:=xlUp
Thank you for any help