24

我在 Reporting Services 中使用了一些复杂的表达式来控制报告中数据的值、格式等(请参阅MSDN)。

是否可以在这些表达式中插入代码注释,如果可以,语法是什么?

通过代码注释,我的意思是:

// single line comment
/* or multi line comment */
4

2 回答 2

39

它看起来像 VB 代码。
尝试使用撇号写评论。

'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:另外,评论似乎应该放在最后。

于 2009-05-20T03:42:24.147 回答
1

如果你想评论一个 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 的行将永远不会被击中,这样您就可以将它们用作注释。不是很漂亮但很有用:-)

于 2017-04-27T07:35:14.257 回答