Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在access db中使用excel函数?我们有一个保单号码 我想知道保单号码是否重复返回 0 否则 1
在 excel 中:=IF(A2=A1),1,0
如何在访问中编写此公式?
请感谢您的帮助。
谢谢。
在 Access VBA 中,您将使用布尔值(真/假)
Match = (Value2 = Value1)
如果您坚持认为 Match 必须是Integer,则可以这样做:
Match = Abs(Value2 = Value1)
在查询中,它会像:
Match: Abs([Field2]=[Field1])