MS Access 验证规则
MS Access validation rule
我正在尝试将一个字段的值设置为前一个字段的第一个字母,但我无法弄清楚,任何帮助将不胜感激。
这是我想要做的;
If TNS_Type = "Printing" then
me="P"
ElseIf TNS_Type = "Sales" then
me="S"
ElseIf TNS_Type = "Repairs" then
me="R"
End If
me = table 中的第二个输入单元格。
TNS_Type = table.
中之前完成的单元格
您需要使用 LEFT
函数的 UPDATE
语句,类似这样
UPDATE yourTable
SET me = LEFT(TNS_Type, 1)
我正在尝试将一个字段的值设置为前一个字段的第一个字母,但我无法弄清楚,任何帮助将不胜感激。 这是我想要做的;
If TNS_Type = "Printing" then
me="P"
ElseIf TNS_Type = "Sales" then
me="S"
ElseIf TNS_Type = "Repairs" then
me="R"
End If
me = table 中的第二个输入单元格。
TNS_Type = table.
中之前完成的单元格您需要使用 LEFT
函数的 UPDATE
语句,类似这样
UPDATE yourTable
SET me = LEFT(TNS_Type, 1)