|
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
这个应该可以.
[code=vb]
Private Sub Worksheet_Change(ByVal Target As Range)
h = Target.Row
l = Target.Column
If l >= 5 Then GoTo check Else Exit Sub
check:
For i = 3 To [C3].End(4).Row
If Cells(h, l).Text = Cells(i, 3).Text Then
Mark = 0
Cells(i, 4) = "已缴费"
Exit For
Else
Mark = 1
End If
Next
If Mark = 1 Then
MsgBox ("NG")
Cells(h, l).Font.ColorIndex = 3
End If
End Sub
[/code]
判断后没必要自动移光标,扫描枪扫描完成后会有个模拟ENTER的动作.
自己设置下向下还是向右.
居民.zip
(19.43 KB, 下载次数: 133)
|
|