Forum Discussion

Andvil's avatar
Andvil
Helper V
6 years ago
Solved

Visual with incomplete information - Relationships

Hello community,   I created relationships between tables and I want to export the visual information as xls file. In this example, I assign "employees" to some "customers", but not all customers h...
  • v-zhenbw-msft's avatar
    v-zhenbw-msft
    6 years ago

    Hi Andvil ,

     

    Maybe you can use Measure instead of columns, like the following example.

     

    Replace Item Column with Item Measure and put it in Values

    Item Measure = 
    var _x = CALCULATE(SUM('2020'[ITEMS]))
    return
    IF(
        ISBLANK(_x),"",_x)

     

     

    If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?

     

    Best regards,

     

    Community Support Team _ zhenbw

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

     

    BTW, pbix as attached.