IsNothing 的反义词是什么?

发布于 2024-12-10 04:12:46 字数 127 浏览 0 评论 0原文

我想说如果字段“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

赠佳期 2024-12-17 04:12:46

只需添加NOT

If Not IsNothing(something) Then ...

编辑:

刚刚看到 标签,

Dim myVariable as Object    
If Not myVariable Is Nothing Then ...

Just add NOT:

If Not IsNothing(something) Then ...

EDIT :

Having just seen the tag,

Dim myVariable as Object    
If Not myVariable Is Nothing Then ...
世界等同你 2024-12-17 04:12:46

VBA 中不存在 IsNothing()。要检查字段或变体是否包含某些内容,您应该使用
If myField Is NULL then

要检查未分配的对象,请使用

If myObject Is Nothing 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

If myObject Is Nothing Then
感情旳空白 2024-12-17 04:12:46

检查值是否存在的一种非常有效的方法是检查它的长度:

If Len(Fields!Resource.Value) <> 0

A very efficient way to check a value exists is to check it's length:

If Len(Fields!Resource.Value) <> 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文