i need to insert copied rows into another worksheet
i write this code and it doesn`t insert it, it gives me error.
Sub IsEmptyExample1()
    Dim wss As Sheets
    Dim ws As Worksheet
    Set wss = ThisWorkbook.Worksheets
    Set ws = wss("Sheet1")
    wsLR = ws.Cells(Rows.Count, 1).End(xlUp).Row
    For x = 1 To wsLR
        Cells(x, 1).Select
        If IsEmpty(ActiveCell.Value) = False Then
            ThisWorkbook.Worksheets("sheet1").Rows(x).Select
            Selection.Copy
            Sheets("DE Portal LL").Select
            Selection.Insert Shift:=xlDown
        Else
        End If
    Next x
End Sub
 
     
    