SSRS 2008 tablix results missing values -


i have report takes order number parameter , shows tablix each part number on row along part description, number ordered, number shipped, number remaining ship, , number on backorder.

ssms shows query returns same number of rows tablix shows. however, tablix has blanks in several places. have no filters, no visibility settings, , no special conditions. have zeros set display '-'.

the blanks occur below identical values in 2 columns: number shipped , number remaining. is, value not shown (only in these 2 columns) if same value above it, this:

item desc #ordered #shipped #remaining #backorder 1h   abc         4        4          -          - 2r   def         1        -          1          0 5l   ghi         6                   6          3 7p   jkl         6        6          -          - 9q   mno         6                              - 

there should - (for zero) 5l under #shipped. 9q should have 6 under #shipped , - under #remaining, this:

item desc #ordered #shipped #remaining #backorder 1h   abc         4        4          -          - 2r   def         1        -          1          0 5l   ghi         6        -          6          3 7p   jkl         6        6          -          - 9q   mno         6        6          -          - 

what going on?

in query, try isnull(#shipped,'-') catch rest of blanks. if doesn't work, use textbox expression:

=switch(len(#shipped)>0,#shipped,true,"-") 

this replace blank values dash match others.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -