tanhung1132qn
Yêu THVBA
Mình đang tập tành tự học VBA có viết đoạn code sau mà cứ báo lỗi dòng
"If cotB = 2 And HangB > 7 And BILL.Range("B" & temp).Value <> 0 And BILL.Range("F" & temp).Value <> 1 Then"
mong mn giúp đỡ :<
"If cotB = 2 And HangB > 7 And BILL.Range("B" & temp).Value <> 0 And BILL.Range("F" & temp).Value <> 1 Then"
mong mn giúp đỡ :<
Mã:
Dim temp As Long
Dim HangB As Variant
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim BILL As Worksheet
Set BILL = Sheet5
cotB = ActiveCell.Column
Select Case cotB
Case Is = 6
GoTo ketthuc
Case Is = 2
temp = HangB
HangB = ActiveCell.Row
If cotB = 2 And HangB > 7 And BILL.Range("B" & temp).Value <> 0 And BILL.Range("F" & temp).Value <> 1 Then
BILL.Range("F" & temp).Value = 1
End If
End Select
ketthuc:
End Sub