当列值为零时,如何隐藏数据窗口中列的显示值
这个问题说明了一切。澄清一下:我并不是想隐藏整个列,我只是想在显示值等于零时隐藏它。
任何帮助表示赞赏!
提前致谢。
The question says it all. To clarify: I am not trying to hide the whole column, I just want to hide the display value when it is being equal to zero.
Any help is appreciated!!!
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对您所说内容的一种解释是使格式掩码以井号结尾,例如
#,###
。另一种解释是根据列的值创建一个Visible
表达式,例如(未经测试)if (*colname*=0, '0', '1')
。我猜你追求的是前者。祝你好运,
特里。
One interpretation of what you're saying is to make the format mask end in a pound sign, like
#,###
. Another interpretation would be to make aVisible
expression dependent on the value of the column, like (untested)if (*colname*=0, '0', '1')
. I'm guessing you're after the former.Good luck,
Terry.
值得注意的是,您可以为一个数据窗口列指定四种不同的格式掩码。您只需创建最多四个掩码,并用分号分隔。
示例格式掩码:
$#,##0.00;RED;#;'null'
产生这些结果:
123.01 - -> $123.01
-123.01 --> ($123.01) 红色文字
0 -->
空 -->无效的
It is worth knowing that you can specify four different format masks for one datawindow column. You simply create up to four masks separated by semicolon.
Sample Format Mask:
$#,##0.00;RED;#;'null'
Produces These Result:
123.01 --> $123.01
-123.01 --> ($123.01) in red text
0 -->
null --> null