How to create an SSRS Overlapping Bar Chart

Lela Keller 86 Reputation points
2022-06-15T14:39:07.51+00:00

How can I format an SSRS bar chart as in the example below? I have a single dataset that contains sales, goal, year, and month. Currently I have the chart formatted as a bar chart but the sales and goal are side by side. Is it possible to overlap them? Would I need to have a separate dataset for each in order to accomplish this?

211687-image.png

SQL Server Reporting Services
SQL Server Reporting Services
A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
3,061 questions
0 comments No comments
{count} votes

Accepted answer
  1. Joyzhao-MSFT 15,631 Reputation points
    2022-06-16T01:54:56.483+00:00

    Hi @Lela Keller ,
    Please refer to: SSRS overlapping column chart.
    You could get more creative with the following example: Overlapping Charts in SSRS using Range Charts.
    I tested locally:
    Based on the dataset query, I have a table like this:
    211852-01.jpg

    Insert a Colum Chart, set as follows:
    211818-02.jpg

    Set Category Group Properties:
    211861-03.jpg

    Change the expression of Target Series Properties and change the background color to gray::

    =Sum(Fields!Target.Value,"Company")  
    

    Change the Chart Type of the Actual Series to Range Column, and change the Custom Attributes to PointWidth=0.6:
    211770-04.jpg
    211837-05.jpg

    Preview:

    211819-preview.jpg
    If your dataset structure is different from mine, please refer to the link to change the dataset structure using pivot.

    Best Regards,
    Joy


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.