SSRS BIDS 2008 数据标签放置表达式
请参阅附图。
我在气泡图上单击了“显示数据标签”,现在在每个气泡上显示项目名称,这很好。我想要的是向该位置添加一个表达式(参见最右边的红色圆圈)
我想要的表达式是能够说“如果项目完成度小于或等于 50%,则显示右下角的数据标签(参见垂直 exis [完整]字段)”
首先这是否可能,如果可能的话,表达式会是什么。
您需要的字段是:
BarName = 项目名称 完成 = % 完成
See attached image.
I have clicked 'Show data Labels' on my bubble diagram, this is now displaying the project name over each bubble which is fine. What I want is to add an expression to the position (See far right red circle)
The expression I would like is the ability to say "Show data labels bottom right if the project is less than or equal to 50 percent complete (see vertical exis [Complete] field)"
Firstly is this possible, if so what would the expression be.
The fields that you need are:
BarName = Project Name
Complete = % Complete
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
=iif(Fields!Complete.Value <= 50,Fields!BarName.Value,"")
=iif(Fields!Complete.Value <= 50,Fields!BarName.Value,"")