我在Reporting Services中使用了一些复杂的表达式来控制报表中数据的值,格式等(请参阅MSDN)。
是否可以在这些表达式中插入代码注释,如果是,那么语法是什么?
通过代码注释我的意思是:
// single line comment
/* or multi line comment */
答案 0 :(得分:27)
看起来像VB Code 尝试使用撇号写评论。
'This is a sample comment.
这是猜测:)
编辑:VB实际上没有多行评论 但是,请尝试使用以下内容查看是否有效
'This is a sample comment _
followed by a new line _
and the comment ends
如果这不起作用,你可以
'This is a sample comment
'followed by a new line
'and the comment ends
EDIT2:此外,似乎评论可以在开头或结尾 来源:https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=441283
答案 1 :(得分:0)
如果您想对switch语句发表评论,可以执行以下操作:
=switch(
false, "--- First, test if above zero ---"
, Parameters!Test.Value > 0
, "Value is above zero. Yeah!"
, false, "--- Then test if -1 ---"
, Parameters!Test.Value = -1
, "I guess the value is unknown"
, false, "--- Finally catch everything else ---"
, true
, "We could not handle this value. Sorry :-\"
)
带有false的行永远不会被击中,这样你就可以将它们用作注释。不是很漂亮但非常有用: - )