Tại dòng 1:1 Insert thêm cột tiêu đềnhờ các anh hướng dẫn cho em có cách nào dánh Số thứ tự vào các ô trong sheet bị trộn merge and center.
Bạn dùng đoạn code này xem được khôngnhờ các anh hướng dẫn cho em có cách nào dánh Số thứ tự vào các ô trong sheet bị trộn merge and center.
Sub Stt_Merge()
Dim clls As Range
Set Rng = Range([B1], [B65535].End(xlUp))
Rng.Offset(, -1).ClearContents
For Each clls In Rng
If Len(clls) > 10 Then clls.Offset(, -1) = _
WorksheetFunction.Max(Rng.Resize(clls.Row, 1).Offset(, -1)) + 1
Next
End Sub
Sub ChenSo()
Dim I As Long, J As Long
J = 1
For I = 1 To [B65536].End(xlUp).Row
If Cells(I, 2).Value <> "" And Cells(I, 2).Font.Bold = False Then
Cells(I, 1).Value = J
J = J + 1
End If
Next
End Sub
Option Explicit
Sub STT()
With Range([A1], [B65536].End(xlUp))
.AutoFilter 2, "<>", 1, "<>LOÂ*"
With .Resize(, 1).SpecialCells(12)
.FormulaR1C1 = "=SUBTOTAL(3,R1C2:RC[1])"
End With
Application.Calculation = -4135
.AutoFilter
.Resize(, 1).Copy: .Resize(, 1).PasteSpecial 3
End With
Application.Calculation = -4105
End Sub