sql - Hiding inside group columns from other columns that don't have values -


0down votefavorite

i'm working on report , person needs presented in specific way. i'm not sure how columns outside displaying dates next column inside matrix displaying values.

for example setup this:

     |   hireddt   |  termdt  |         [type]         |   licdt   |    meddt   | --------------------------------------------------------------------------------- id   |  [hireddt]  | [termdt] |  sum([count_of_type])  |  [licdt]  |   [meddt]  | --------------------------------------------------------------------------------- 

and looks this:

     |   hireddt   |  termdt  |   lic   |   med   |   app   |     licdt   |    meddt   | ---------------------------------------------------------------------------------------- 1    |  1/31/12    | 1/31/14  |    1    |    1    |    12   |    6/1/15   |   9/1/14   | 2    |  2/19/12    | 9/18/14  |    1    |    1    |    12   |    3/2/15   |   9/1/14   | 

but when use inside grouping match date next associated document type get:

     |   hireddt   |  termdt  |   lic   |           |        |   med   |        |             |   app   |        |         | ---------------------------------------------------------------------------------------------------------------------------- 1    |  1/31/12    | 1/31/14  |    1    |   6/1/15  |        |    1    |        |  9/1/2014   |    12   |        |         | 2    |  2/19/12    | 9/18/14  |    1    |   3/2/15  |        |    1    |        |  9/1/2014   |    12   |        |         | 

what i'm trying this:

     |   hireddt   |  termdt  |   lic   |   licdt   |   med   |   meddt   |    app   | -------------------------------------------------------------------------------------- 1    |  1/31/12    | 1/31/14  |    1    |   6/1/15  |    1    |  9/1/14   |     12   | 2    |  2/19/12    | 9/18/14  |    1    |   3/2/15  |    1    |  9/1/14   |     12   | 

is possible make happen? i'm quite new ssrs may not have put great terms, feel showed example enough describe issue.

i right-click on cell have labelled sum([count_of_type]) , choose insert column - inside group - right.

in new cell set expression to: = max ( [licdt] )


Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -