calculation grouped by chart series

  • I have a chart with a Series with 2 values, "Billing" and "Labor". I want to take the value of "Labor" / "Billing" to get the percentage and display it in the "Labor" Point Label. So in the example attach for Jan, I want to take 125,840 / 677,018. I tried the following expression but it displays "Infinity" in the Point Label.

    =sum(iif(Fields!Type.Value = "Labor", Fields!Amount.Value, 0))

    / sum(iif(Fields!Type.Value = "Billing", Fields!Amount.Value, 0))

    Then i tried this but all it displayed was the same amounts in the "Labor" Point Label as in the attach chart. However, it displays zeros in the "Billing" Point Labels. Any ideas?

    =iif(Fields!Type.Value = "Labor", Fields!Amount.Value, 0)

    / iif(Fields!Type.Value = "Billing", Fields!Amount.Value, 0)

  • help please???

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply