Private Sub CmdLuu_Click()
Dim lRw As Long, j As Long
With Sheets("TH")
lRw = ActiveCell.Row - 1 'sýÒa ðêÒ giaìn xuôìng cell hiêòn haÌnh
For j = 1 To SeL
' TýÌ lbSelect (ListBox) gaìn xuôìng sheet ðiìch õÒ caìc côòt K, L (nêìu không muôìn gaìn thiÌ boÒ)
.Cells(lRw + j, "D").Value = Me!lbSelect.List(j, 0)
.Cells(lRw + j, "E").Value = Me!lbSelect.List(j, 1)
.Cells(lRw + j, "F").Value = Me!lbSelect.List(j, 2)
.Cells(lRw + j, "H").Value = Me!lbSelect.List(j, 3)
.Cells(lRw + j, "K").Value = Me!lbSelect.List(j, 4)
Next j
ActiveCell.Offset(, 3).Select 'thêm: doÌi qua côòt ...
For j = 1 To SeL
Me!lbSelect.List(j, 0) = ""
Me!lbSelect.List(j, 1) = ""
Me!lbSelect.List(j, 2) = ""
Me!lbSelect.List(j, 3) = ""
Me!lbSelect.List(j, 4) = ""
Me!lbSelect.List(j, 5) = ""
Next j
SeL = 0
Unload Me ' them
End With
End Sub