A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
'copy business name (this is text only)
Range("A4:A4" & lrw).Select
Selection.Copy
Range("ak4:ak" & lrw).Select
ActiveSheet.Paste
Note that you left the 4 in the second part of the range. For a pseudo-Paste Special, Values this would be better written as,
Range("ak4:ak" & lrw) = Range("A4:A" & lrw).Value
'copy street address data (this is both numbers and text)
'name and number
Range("ab4:af" & lrw).Select
Selection.Copy
Range("al4:ap" & lrw).Select
'ActiveSheet.Paste
Selection.Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
As above, try:
Range("al4:ap" & lrw) = Range("ab4:af" & lrw).Value