6

I have a pie chart in SSRS. It contains many categories so it is kinda hard to read. What I would like to do is include the category AND the percent in the label, but I am not sure how to do this.

You can include the category by setting the label to [CategoryName] (this is the default). You can include the percent by changing that to #PERCENT. But I cannot seam to figure out how to include both.

Is there a VBA formula that I can add that will give me both?

4

2 に答える 2

15

実際に#PERCENTは、より大きな文字列に押し込むことができます。

いくつかの簡単なデータ:

ここに画像の説明を入力

そして、これに基づく簡単なチャート:

ここに画像の説明を入力

ラベルに使用される式は次のとおりです。

=Fields!grp.Value & ": " & "#PERCENT{P2}"

ここで{P2}は、フォーマットを制御しています。シナリオに適応できるはずです。

または、より細かく制御するために、関連する % 計算をラベル式に追加することもできます。上記の場合、これは次のようになります。

=Fields!grp.Value
    & ": "
    & Format(Sum(Fields!val.Value) / Sum(Fields!val.Value, "MyDataSet"), "P2")

この場合、上記と同じ結果が得られます。

于 2013-10-24T15:15:28.267 に答える
1

hereで説明されているように、chart キーワードを使用して#LEGENDTEXT、凡例項目のテキストに対応するテキストをラベルに書き込むことができます。

于 2016-03-07T08:13:08.477 に答える