[FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]Hi all I'm trying to join SpecialCells(xlConstants) with SpecialCells(xlFormulas) and no matter what I [/FONT]try I can only one or the other to work never both.
HTML:
Sub Done()
Dim NR As Long
Application.ScreenUpdating = False
Application.EnableEvents = False
With Sheets("Your Quotation")
NR = .Range("D" & .Rows.Count).End(xlUp).Row + 1
If NR > 149 Then NR = NR + 1 .Range("C" & NR).Resize(, 1).Value = Range("B:C").Value
Range("A:A").SpecialCells(xlConstants & xlFormulas).Offset(, 2).Copy .Range("C" & NR)
Range("A:A").SpecialCells(xlConstants).Offset(, 3).Copy .Range("D" & NR)
Range("E:E").SpecialCells(xlConstants).Offset(, 1).Copy .Range("D" & NR)
End With
Application.ScreenUpdating = True
Application.EnableEvents = True
Beep
End Sub