'DataTables("工资表").ReplaceFor("审核", True, "[客户]>'' And [用户名] = '张三' and [审核] = False")
以上代码中,红色部分,
想改为:“用户名”列的内容,为“生产部门”这个“用户组”里的成员名字。
或者,
以上代码,红色部分,
改为:“用户名”列的内容,是“张三”或者“李四”的。
请老师帮忙!
[此贴子已经被作者于2024/4/9 18:50:43编辑过]
这个意思?
And [用户名] in ('张三','李四') and [审核] = False")
dim lst as list(of string) = datatbles("用户表").getvalues("用户","用户组 = '生产部门'")
dim x as string = "'" & string.join("','",lst.toarray)
DataTables("工资表").ReplaceFor("审核", True, "[客户]>'' And [用户名] in " & x & " and [审核] = False")