Forum Discussion

lawada's avatar
lawada
Helper III
4 years ago
Solved

unable to replace blank with zeros in matrix

 

im trying to replace blank values with zeros in the following matrix :

 

 

the measure im using:

total users = CALCULATE(DISTINCTCOUNT(canceled_then_returned_cohort[user_id]))+0
note that both columns im using in the matrix doesnt have blank values and my datasource is redshift
 
is there any other solution than adding '+0' at the end of the measure since it's not working

 

  • As Fowmy points out, if there are no rows in the data table corresponding to a particular cell, then it can't return anything since there's nothing to evaluate. It doesn't matter if you add "+0" to the measure since it never gets called in the first place.

     

    The solution to this is to use dimension tables to populate the rows and columns in the visual. I.e., a date table for the rows and some sort of index table for the columns. This way, the measure you put in the matrix cells lives in the cross-join of the dimensions rather than being limited to the subset that intersects with your data table.

5 Replies

  • lawada 

    Can you check your source data if you have data for September 2018 on 10th ? 
    If there is not data, the cell in the matrix cannot be controlled

  • As Fowmy points out, if there are no rows in the data table corresponding to a particular cell, then it can't return anything since there's nothing to evaluate. It doesn't matter if you add "+0" to the measure since it never gets called in the first place.

     

    The solution to this is to use dimension tables to populate the rows and columns in the visual. I.e., a date table for the rows and some sort of index table for the columns. This way, the measure you put in the matrix cells lives in the cross-join of the dimensions rather than being limited to the subset that intersects with your data table.

    • lawada's avatar
      lawada
      Helper III

      this solution is correct but its not working with me . after i created both calender table and and index column , joined with the data table and then used the two columns from calender and index table within the created measure it keeps loading in the visual but doesnt show the result at the end . note that my data  table source is in direct query mode, would this affect on the speed of the data loading in the visual?

  • Hi lawada ,

    According to your description, you can use IF function, like this:

    Total users = IF(ISBLANK(CALCULATE(DISTINCTCOUNT(canceled_then_returned_cohort[user_id]))),ā€0ā€,CALCULATE(DISTINCTCOUNT(canceled_then_returned_cohort[user_id]))

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • lawada's avatar
      lawada
      Helper III

      this solution doesnt work, as mentioned in the answers below theres no rows in the data table