dhn46
Hướng tới tương lai
- Tham gia
- 1/3/11
- Bài viết
- 3,251
- Được thích
- 3,870
Em có câu hỏi mong diễn đàn tư vấn cách giải quyết
Khi em copy code từ Module excel vào bài viết sử dụng
thì nó không xuống dòng như trên module, nếu sử dụng
thì xuống dòng bình thường
Sau đây là ví dụ trường hợp của em
Tks GPE!
Khi em copy code từ Module excel vào bài viết sử dụng
PHP:
...
Mã:
...
Sau đây là ví dụ trường hợp của em
PHP:
Sub Button1_Click()Dim arrDim i, j As LongReDim arr(1 To Cells(65536, 18).End(xlUp).Row - 6, 1 To 6)j = 1For i = 5 To Cells(65536, 18).End(xlUp).Row - 1 If Cells(i, 18) > 0 Then arr(j, 1) = j arr(j, 2) = Cells(i, 3) arr(j, 3) = Cells(i, 4) arr(j, 4) = Cells(i, 5) arr(j, 5) = Cells(i, 18) arr(j, 6) = Cells(i, 19) j = j + 1 End IfNext
Sheets("px").Range("a10").Resize(UBound(arr), 6) = arr
Mã:
Sub Button1_Click()
Dim arr
Dim i, j As Long
ReDim arr(1 To Cells(65536, 18).End(xlUp).Row - 6, 1 To 6)
j = 1
For i = 5 To Cells(65536, 18).End(xlUp).Row - 1
If Cells(i, 18) > 0 Then
arr(j, 1) = j
arr(j, 2) = Cells(i, 3)
arr(j, 3) = Cells(i, 4)
arr(j, 4) = Cells(i, 5)
arr(j, 5) = Cells(i, 18)
arr(j, 6) = Cells(i, 19)
j = j + 1
End If
Next
Sheets("px").Range("a10").Resize(UBound(arr), 6) = arr
Tks GPE!