IsNothing 的反义词是什么?
我想说如果字段“Resource”持有一个值”...那么
基本上与
IIF(IsNothing(Fields!Resource.Value)
相反,你能帮忙吗
I want to say If the field "Resource" holds a value" ... then
basically the opposite of
IIF(IsNothing(Fields!Resource.Value)
can you please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只需添加
NOT
:编辑:
刚刚看到vba 标签,
Just add
NOT
:EDIT :
Having just seen the vba tag,
VBA 中不存在 IsNothing()。要检查字段或变体是否包含某些内容,您应该使用
If myField Is NULL then
要检查未分配的对象,请使用
IsNothing() does NOT exist in VBA. To check if a field or a variant contains something, you should use
If myField Is NUll then
To check for unassigned objects, use
检查值是否存在的一种非常有效的方法是检查它的长度:
A very efficient way to check a value exists is to check it's length: