Copy sheet này qua Sheet khác

Liên hệ QC

tranphuson

Thành viên thường trực
Tham gia
14/8/09
Bài viết
269
Được thích
10
Giới tính
Nam
Mình có 1 file cần hỗ trợ bằng VBA - Copy từ Sheet "T" qua Sheet "Orders" theo như mô tả bên dưới

Cảm ơn

1632232566891.png
 

File đính kèm

PHP:
Sub CopyTheoCotKhongThuTu()
 Dim Rws As Long
 
 Sheets("Orders").Select
 With Sheets("T")
    Rws = .[B2].CurrentRegion.Rows.Count
    .[f2:H2].Resize(Rws).Copy Destination:=[K11]
    .[A2].Resize(Rws).Copy Destination:=[A11]
    [C11].Resize(Rws - 1).Value = "Ngu Vùa Thôi!"
    [d11].Resize(Rws - 1).Value = Date
    [E11].Resize(Rws - 1).Value = "B ???"
    .[e2].Resize(Rws).Copy Destination:=[G11]
    .[J2].Resize(Rws).Copy Destination:=[i11]
    .[I2].Resize(Rws).Copy Destination:=[N11]
    .[c2].Resize(Rws).Copy Destination:=[t11]
    .[d2].Resize(Rws).Copy Destination:=[v11]
 End With
End Sub

Những gì còn lại bạn tự sửa đi nha!
 
PHP:
Sub CopyTheoCotKhongThuTu()
 Dim Rws As Long
 
 Sheets("Orders").Select
 With Sheets("T")
    Rws = .[B2].CurrentRegion.Rows.Count
    .[f2:H2].Resize(Rws).Copy Destination:=[K11]
    .[A2].Resize(Rws).Copy Destination:=[A11]
    [C11].Resize(Rws - 1).Value = "Ngu Vùa Thôi!"
    [d11].Resize(Rws - 1).Value = Date
    [E11].Resize(Rws - 1).Value = "B ???"
    .[e2].Resize(Rws).Copy Destination:=[G11]
    .[J2].Resize(Rws).Copy Destination:=[i11]
    .[I2].Resize(Rws).Copy Destination:=[N11]
    .[c2].Resize(Rws).Copy Destination:=[t11]
    .[d2].Resize(Rws).Copy Destination:=[v11]
 End With
End Sub

Những gì còn lại bạn tự sửa đi nha!
Mình đã làm xong như đoạn VBA này, cảm ơn bạn đã hỗ trợ
 
Web KT

Bài viết mới nhất

Back
Top Bottom