Đưa dữ liệu vào List View

Liên hệ QC

tuyettrang186

Thành viên mới
Tham gia
11/12/10
Bài viết
30
Được thích
4
Em có ví dụ này nhờ anh chị hướng dẫn cách đưa vùng dữ liệu này và ListView nhé!
 

File đính kèm

Bạn tham khảo code nha (Lưu ý Listview kèm theo VBA không hỗ trợ Font Unicode):

Mã:
Private Sub UserForm_Initialize()
Dim i, Rg(), Al(), Cls As Range, It As ListItem
Rg = Array(60, 130, 50, 70, 70, 70)
Al = Array(0, 0, 2, 1, 1, 1)
With Me.ListView1
.View = lvwReport
.Gridlines = True
For i = 1 To 6
.ColumnHeaders.Add , , Sheet1.Cells(1, i), Rg(i - 1), Al(i - 1)
Next
Set Cls = Sheet1.[A2]
Do While Not IsEmpty(Cls)
Set It = .ListItems.Add(, , Cls)
For i = 1 To 5
It.SubItems(i) = IIf(IsNumeric(Cls.Offset(, i)), Format(Cls.Offset(, i), "#,##0"), Cls.Offset(, i))
Next
Set Cls = Cls.Offset(1)
Loop
End With
End Sub
 

File đính kèm

Lần chỉnh sửa cuối:
Upvote 0
Web KT

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

Back
Top Bottom