如何在 MS Access 中过滤掉数组的空元素
我正在从其他几个字段中生成标题,并且想要“正确”的方法:
Me.Title.Value = Join(Array([Conference], [Speaker], partstr), " - ")
除了 [conference]、[speaker] 或 partstr 中的任何一个可能为空,并且我不想要额外的“-”' s。 是否有任何功能可以使这项工作变得简单?
I'm generating titles out of a few other fields, and want the "right" way to do:
Me.Title.Value = Join(Array([Conference], [Speaker], partstr), " - ")
Except any of [conference], [speaker] or partstr might be null, and I don't want the extra "-"'s. Are there any functions that'll make this job straightforward?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不 - 你必须检查每一项,然后在最后进行清理
使用通用函数进行修改:
调用示例:
Nope - you'll have to check each one and then cleanup at the end
Revised with generic function:
Calling Example:
完全重写,这次经过了正确的测试:
A complete re-write, and this time properly tested: