请教大师,下边这段代码错在哪里,如果备注列含有“作废”,那么所在行样式将显示“作废”样式With Tables("接单登记")
Dim r As Integer
r = .Find("作废", 0, "备注", False, False, True)
If r > - 1 Then '如果找到符合条件的行
.Position = r '则选择该行
e.Style = "作废"
End If
End With
可能我没说清楚,备注列内有多个内容,譬如:“含运费 作废”,如何写代码,麻烦老师指教
[此贴子已经被作者于2024/9/25 15:58:16编辑过]
http://www.foxtable.com/webhelp/topics/1422.htmIf e.row.isnull("备注")=false andalso e.row("备注").Contains("作废") Then