レポート内のデータの値、形式などを制御するために、Reporting Servicesでいくつかの複雑な式を使用しています( [〜#〜] msdn [〜#〜] を参照)。
これらの式にコードコメントを挿入することは可能ですか?その場合、構文は何ですか?
コードコメントとは、次のような意味です。
// single line comment
/* or multi line comment */
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:また、コメントは最後にあるべきだと思われます。
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の行はヒットしないため、コメントとして使用できます。あまり美しくはありませんが、とても便利です:-)