I am having a hard time analyzing the problem in my code. I need to sort ColumnE by ascending order but the problem is the rows that should not be included in the sorting was also sorted.
The highlighted in yellow should not be included in the sorting process. I need to start the sorting in row3.
Here is my code:
'sort by ascending order
wsRD.Columns("C:E").Sort key1:=wsRD.Range("E1"), _
order1:=xlAscending, Header:=xlYes
Can anyone tell me what's wrong in my code? Appreciate your help.
Thank you.

wsRD.Columns("C:E")trywsRD.Columns("C3:E" & LastRow)beingLastRow = wsRD.Range("C3").End(xlDown).Row - 1-1for the last row?wsRD.Range("C3:E" & LastRow)beingLastRow = wsRD.Range("C3").End(xlDown).Row