SSRS tablix split report into two sets of columns

d90

I have a report that lists some basic data about a company for all (possibly) 52 weeks of the year. The report takes in parameters of year and UptoWeek. So for example i can put in 2013 and 31 and it will spit out all the values for year 2013 up to week 31. Right now it looks like:

 Week  Dollars   PY Dollars   Change
 1     5         4            1
 2     20        25           -5
 ...
 52

I want it to split into two sets of columns at the halfway point, so the left side is 1-25 and the right side is 26-52 like so

 Week  Dollars   PY Dollars   Change    Week  Dollars   PY Dollars   Change 
 1     5         4            1         26
 2     20        25           -5        27
 ...                                    ...
 25                                     52

Is this possible in tablix?

The one thing I was thinking was to just copy the tablix next to itself and hide rows higher than 25 on the left, and lower than 26 on the right. I'm just not sure if that's the best way to handle this...

Ian Preston

You could set up a column group based on an expression like:

=IIf(Fields!Week.Value <= 26, 1, 0)

Note that this is set to 26, as 26 really should be on the left side, I think.

Your row group expression will need to be something like:

=(Fields!Week.Value - 1) Mod 26

So say I have data like this:

enter image description here

(snip)

enter image description here

And a tablix like this, grouped as above:

enter image description here

With the above grouping, this works for me:

enter image description here

(snip)

enter image description here

This will split your data into two groups based and week and as such will meet your requirements. Since you're only interested in two groups and have a ready-made row number in Week, you can keep the expression simple.

Side-by-side tablixes would most likely be fine, too, but SSRS is notoriously temperamental with adjacent objects. Using grouping as above keeps this as one item at the designer level.

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 tablix split report into two sets of columns

From Dev

Adding subtotals to SSRS report tablix

From Dev

SSRS Report Multiple Pages Tablix Order

From Dev

Change the rows color of tablix report in SSRS

From Dev

Tablix border inconsistent when zooming into ssrs report

From Dev

SSRS report - show tablix only once

From Dev

SSRS automatic extension columns depending on the parameters - tablix

From Dev

SSRS automatic extension columns depending on the parameters - tablix

From Dev

String Split in SSRS Report

From Dev

How to display two sets of data in a tablix

From Dev

tablix columns jagged in dynamics crm report viewer

From Dev

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

From Dev

Can I allow the user to specify the order of static columns in SSRS tablix?

From Dev

Adding together 4 different Tablix data columns SSRS

From Dev

Add the columns automatically in SSRS report

From Dev

adding date columns in SSRS Report

From Dev

Joining two datasets to create a single tablix in report builder 3

From Dev

Report with two independent columns

From Dev

Check null and split value in textbox in SSRS report

From Dev

SQL inner join list split for an SSRS report

From Dev

Expression to hide tablix in ssrs

From Dev

SSRS dynamic change the report header textbox value based on tablix row group value change

From Dev

Excel - split view of sheet horizontally but viewing two separated sets of columns instead of rows

From Dev

How to Create Dynamic Columns in SSRS Report

From Dev

SSRS mdx report: use dimension on columns

From Dev

Display ssrs report data vertically in columns

From Dev

How to subtract two textBoxes of ssrs report?

From Dev

How to subtract two textBoxes of ssrs report?

From Dev

Hide Tablix on Condition base in SSRS

Related Related

  1. 1

    SSRS tablix split report into two sets of columns

  2. 2

    Adding subtotals to SSRS report tablix

  3. 3

    SSRS Report Multiple Pages Tablix Order

  4. 4

    Change the rows color of tablix report in SSRS

  5. 5

    Tablix border inconsistent when zooming into ssrs report

  6. 6

    SSRS report - show tablix only once

  7. 7

    SSRS automatic extension columns depending on the parameters - tablix

  8. 8

    SSRS automatic extension columns depending on the parameters - tablix

  9. 9

    String Split in SSRS Report

  10. 10

    How to display two sets of data in a tablix

  11. 11

    tablix columns jagged in dynamics crm report viewer

  12. 12

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

  13. 13

    Can I allow the user to specify the order of static columns in SSRS tablix?

  14. 14

    Adding together 4 different Tablix data columns SSRS

  15. 15

    Add the columns automatically in SSRS report

  16. 16

    adding date columns in SSRS Report

  17. 17

    Joining two datasets to create a single tablix in report builder 3

  18. 18

    Report with two independent columns

  19. 19

    Check null and split value in textbox in SSRS report

  20. 20

    SQL inner join list split for an SSRS report

  21. 21

    Expression to hide tablix in ssrs

  22. 22

    SSRS dynamic change the report header textbox value based on tablix row group value change

  23. 23

    Excel - split view of sheet horizontally but viewing two separated sets of columns instead of rows

  24. 24

    How to Create Dynamic Columns in SSRS Report

  25. 25

    SSRS mdx report: use dimension on columns

  26. 26

    Display ssrs report data vertically in columns

  27. 27

    How to subtract two textBoxes of ssrs report?

  28. 28

    How to subtract two textBoxes of ssrs report?

  29. 29

    Hide Tablix on Condition base in SSRS

HotTag

Archive