Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Hide blank values in matrix view

I have 2 tables containg call_IDs with a specific call direction (so table1 contains incoming, table 2 outgoing)

 

Table1:

Call_IDDirectionAttemptColdWarm
1In1018129
2In11914790
3In1523770
4In6565116
5In102127144
6In153318
7In894533
8In10535119
9In3698115
10In906622

 

Table 2:

Call_IDDirectionAttemptColdWarm
1Out2212018
2Out11911788
3Out401639
4Out948290
5Out1107651
6Out13912449
7Out11359114
8Out1301359
9Out196955
10Out50738

 

I have a 'bridging' table for the call direction to join the tables.

 

 

When creating a matrix, I get the columns being duplicated on each of the grouping category, and displaying blank values like below;

 

 

 

Clearly these blanks highlighted above should not be appearing. How do I get rid of these?

 

Note. This is a simplified version of a more complex table/data structure with more calculations etc so unfortunatly I cannot combine the In/Out tables (which does fix the issue in fact)

 

See attached pbi file for full example.

PBI_File

 

10 Replies

  • Stachu's avatar
    Stachu
    Icon for Community Champion rankCommunity Champion

    why not appending the two tables? they seem to have indentical structure, you already have in/out flag and you will not need the bridge anymore + the matrix should show it as one

    • Anonymous's avatar
      Anonymous
      Not applicable

      Althoughyou are correct in this example as it doesnt make sense to split the table, however the actual production report contains indivdual measures which splits the attempt/cold/warm states based on their standard deviation values.

       

      So I have a SDTable where it contains the measures that calculates the SD 1 and 2 for each type of call (eg Warm_In, Warm_out, Attempt_In, Attempt_Out, etc):

       

       

      Then I have filter where I can select the SD value from the SDTable above.

       

      See below I still get the same issue when using a merged table:

       

      If this can be achieved using a merged table then of course this will be a preffered solution.

      • Stachu's avatar
        Stachu
        Icon for Community Champion rankCommunity Champion

        I'm not sure I get the complexity fully, but you could have a table like this one:

        and use this code for SELECTEDVALUE to specify between In/Out

        CALCULATE(SELECTEDVALUE(SDTable[Attempt]),SDTable[Direction]="In")

        or you could do the Join table with SD with In/Out values only so it would always be filtered for single entry, but that may make model more complex