SSRS Column chart, total as last column

Malagon

I've got the following column chart: Product names as Category groups with values for budget and revenue on each column. Now I want to create a final column (Total) which is the sum of each column. ie. one column with the total value of the budget and one with the total value of the revenue.

Can this be done directly in the graph without having to do the calculations in the dataset? It's very easy to add a total to a table but seems to be hard to add it to a chart.

Daniel

No, you cannot just add a total column like you can add a total to a table and you are correct that the best approach is to modify your dataset to query.

Either perform a UNION to append a total row or utilize GROUPING SETS (if you want to get fancy) and you should get what you need.

Example UNION:

SELECT product, bedget, revenue
FROM myTable
UNION ALL
SELECT 'total', SUM(budget) as budget, SUM(revenue) as revenue
FROM myTable

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

SSRS percentage of a total with column groups

From Dev

SSRS Chart in tablix with Column Break

From Dev

How to calculate Last column total

From Dev

SSRS calculate percentage of column based on row total

From Dev

SSRS 2008 Column total of a textbox expression in a matrix

From Dev

Last column not displayed MS Chart

From Dev

SSRS display label at base of column chart columns

From Dev

SSRS column chart with maximum vertical axis

From Dev

Sort stacked column chart by total value - Python

From Dev

SSRS Stacked Column Chart - Label Data As A Percent of the Stack

From Dev

Cannot see all the labels on the x asis in an ssrs column chart

From Dev

How do you add an additional column to pie chart legend in SSRS?

From Dev

How to add bar chart inside tablix column of SSRS report?

From Dev

How can I access the column/bar total in my bar chart?

From Dev

How can I access the column/bar total in my bar chart?

From Dev

Total up value in database column and display in chart ASP.net

From Dev

How to display total of a column in the last row of a datatable generated using jQuery?

From Dev

Pivot columns with aggregated function and calculate total of aggregated value in last column

From Dev

SSRS (Column Chart): Showing column bar with Zero(0) lable for non Existing data in bind dataset

From Dev

Excel - Adding multiple columns after last column in chart

From Dev

Summing an SSRS column set

From Dev

SSRS Multiple Column

From Dev

SSRS Date column sorting

From Dev

Dynamic Column Height in SSRS

From Dev

Subtotal on particular column SSRS

From Java

Get total of Pandas column

From Dev

Getting total amount in a column

From Dev

Get total of Pandas column

From Dev

Flex Datagrid Column Total

Related Related

  1. 1

    SSRS percentage of a total with column groups

  2. 2

    SSRS Chart in tablix with Column Break

  3. 3

    How to calculate Last column total

  4. 4

    SSRS calculate percentage of column based on row total

  5. 5

    SSRS 2008 Column total of a textbox expression in a matrix

  6. 6

    Last column not displayed MS Chart

  7. 7

    SSRS display label at base of column chart columns

  8. 8

    SSRS column chart with maximum vertical axis

  9. 9

    Sort stacked column chart by total value - Python

  10. 10

    SSRS Stacked Column Chart - Label Data As A Percent of the Stack

  11. 11

    Cannot see all the labels on the x asis in an ssrs column chart

  12. 12

    How do you add an additional column to pie chart legend in SSRS?

  13. 13

    How to add bar chart inside tablix column of SSRS report?

  14. 14

    How can I access the column/bar total in my bar chart?

  15. 15

    How can I access the column/bar total in my bar chart?

  16. 16

    Total up value in database column and display in chart ASP.net

  17. 17

    How to display total of a column in the last row of a datatable generated using jQuery?

  18. 18

    Pivot columns with aggregated function and calculate total of aggregated value in last column

  19. 19

    SSRS (Column Chart): Showing column bar with Zero(0) lable for non Existing data in bind dataset

  20. 20

    Excel - Adding multiple columns after last column in chart

  21. 21

    Summing an SSRS column set

  22. 22

    SSRS Multiple Column

  23. 23

    SSRS Date column sorting

  24. 24

    Dynamic Column Height in SSRS

  25. 25

    Subtotal on particular column SSRS

  26. 26

    Get total of Pandas column

  27. 27

    Getting total amount in a column

  28. 28

    Get total of Pandas column

  29. 29

    Flex Datagrid Column Total

HotTag

Archive