订购Matrix视觉产品,基础空白

时间:2018-09-24 12:51:21

标签: powerbi dax

我在Power BI文件中有此表:

ImaginaryData = 
DATATABLE (
    "Fruit", STRING,
    "Colour", STRING, 
    "Rnk", INTEGER, 
    "Rnk2", INTEGER, 
    { 
        { "Apple", "R", 1, 2 }, 
        { "Apple", "G", 2, 3 },
        { "Apple", "B", 3, 1 },
        { "Apple", "Y", 4, blank()},
        { "Apple", "S", 5, blank()},
        { "Apple", "T", 6, blank()}
    } )

从中我得到这个矩阵:

enter image description here

因为如果我尝试按列Rnk2排序表,则Rnk2中会有一些空白,因此我可以具有以下状态之一:

enter image description here

enter image description here

我想要的是上述状态之一:

enter image description here

我该怎么做?有没有办法强迫它以不同的方式对待坯料?

1 个答案:

答案 0 :(得分:2)

过去,我有一个类似的问题要解决。也许不是最好的解决方案,但是我通过以下方式解决了。

添加一个计算列以将零重新排序到下面: enter image description here

您还可以删除添加的列以仅查看您的值:

enter image description here

希望这可以为您提供帮助!