Public Sub chuyendulieu()
Dim Rng As Range, Tem1 As Double, Tem2 As Double, Cll As Range, R As Long, Vung As Range, I As Long
With Sheets("baocao")
Set Rng = .Range(.[C11], .[C65000].End(xlUp))
For Each Cll In Rng
R = Cll.Row
If Cll.Font.Bold = False Then
Tem1 = .Cells(R, "N").Value: Tem2 = .Cells(R, "O").Value
.Cells(R, "F") = Tem1: .Cells(R, "G") = Tem2
End If
Next
End With
Set Rng = Nothing
With Sheets("TonghopQI")
Set Rng = .Range(.[e9], .[e65000].End(xlUp))
On Error Resume Next
For Each Cll In Rng
If Cll.Font.Bold = False Then Cll.Value = Cll.Offset(0, -1).Value
Next Cll
End With
Set Rng = Nothing
With Sheets("QuyI")
On Error Resume Next
.Range(.[p8], .[p5000].End(xlUp)).SpecialCells(2).ClearContents
Set Vung = .Range(.[p8], .[p5000].End(xlUp))
For I = 1 To Vung.Rows.Count
If Vung(I) = "" And Vung(I).Offset(, -1) 0 Then Vung(I) = Vung(I).Offset(, -1)
Next
End With
End Sub