Forum Discussion

cj_oat's avatar
cj_oat
Helper I
1 year ago
Solved

The Value does not show when expand Metrix Table

Hi all,   I have an issue regarding Matrix Table, so below is the screenshot where I expanded Matrix table but you may see that in the column "Month Cover" the number does not show in the sub-rows ...
  • Anonymous's avatar
    Anonymous
    1 year ago

    Hi, cj_oat 

    When you delete either Consumer or Product, the Month Cover Measure has a value, which means:
    When the external context satisfies both the Consumer and the Product, there is no corresponding data. So the result of the computation is empty, which is a very common external context problem.

    To do this, apply a calculate function to your original metric and remove one of the row label filters via removefilters or all.

    Month Cover = 
    VAR CurrentWeek = SELECTEDVALUE('Data Report'[Latest Week], MAX('Data Report'[Latest Week]))
    VAR SalesCalc = 
        SWITCH(TRUE(),
            FORMAT(SELECTEDVALUE('Data Report'[Today]), "DDD") = "Mon",
            CALCULATE(SUM('Data Report'[Sales Unit]), 'Data Report'[Week Number] >= CurrentWeek - 3),
            CALCULATE(SUM('Data Report'[Sales Unit]), 'Data Report'[Week Number] >= CurrentWeek - 3 && 'Data Report'[Week Number] < CurrentWeek)
        )
    RETURN
    CALCULATE(DIVIDE([Inventory], SalesCalc, BLANK()),REMOVEFILTERS('Data Report'[Consumer]))

    OR

    Month Cover = 
    VAR CurrentWeek = SELECTEDVALUE('Data Report'[Latest Week], MAX('Data Report'[Latest Week]))
    VAR SalesCalc = 
        SWITCH(TRUE(),
            FORMAT(SELECTEDVALUE('Data Report'[Today]), "DDD") = "Mon",
            CALCULATE(SUM('Data Report'[Sales Unit]), 'Data Report'[Week Number] >= CurrentWeek - 3),
            CALCULATE(SUM('Data Report'[Sales Unit]), 'Data Report'[Week Number] >= CurrentWeek - 3 && 'Data Report'[Week Number] < CurrentWeek)
        )
    RETURN
    CALCULATE(DIVIDE([Inventory], SalesCalc, BLANK()),ALL('Data Report'[Consumer]))

     

    Best Regards

    Jianpeng Li

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