英文:
Filter out rows in Power BI
问题
我在Power BI中有许多派生表,并且有一个包含id列表的表。
派生表如下 -
表1 -
IDs | Value | Address |
---|---|---|
A1 | 二 | 美国 - 50878 |
A2 | 三 | 美国 - 50879 |
A3 | 四 | 美国 - 50888 |
A4 | 五 | 美国 - 50898 |
表2 -
IDs | Value | Address |
---|---|---|
A3 | 二 | 美国 - 50878 |
A4 | 三 | 美国 - 50879 |
A5 | 四 | 美国 - 50888 |
A6 | 五 | 美国 - 50898 |
就像这样,在Power BI中有许多表。
我有一个异常表,其中包含id列表,我的要求是根据异常表中可用的id来过滤上述派生表。
就像我的异常表 -
ids |
---|
A3 |
A4 |
由于A3和A4在异常表中,因此表1和表2不应包含这两个id行。
预期结果应该是
表1 -
IDs | Value | Address |
---|---|---|
A1 | 二 | 美国 - 50878 |
A2 | 三 | 美国 - 50879 |
表2 -
IDs | Value | Address |
---|---|---|
A5 | 四 | 美国 - 50888 |
A6 | 五 | 美国 - 50898 |
英文:
I have many derived tables in Power BI and I have a table having a list of ids.
Derived tables are like this -
Table 1 -
IDs | Value | Address |
---|---|---|
A1 | Two | US - 50878 |
A2 | Three | US - 50879 |
A3 | Four | US - 50888 |
A4 | Five | US - 50898 |
Table 2 -
IDs | Value | Address |
---|---|---|
A3 | Two | US - 50878 |
A4 | Three | US - 50879 |
A5 | Four | US - 50888 |
A6 | Five | US - 50898 |
Like that, I have many tables in Power BI.
I have an exception table having a list of ids and my requirement is to filter out the above-derived table based on the ids available in the exception table.
Like my exception table is -
ids |
---|
A3 |
A4 |
Since A3 and A4 are in the exception table then Table 1 and Table 2 should not contain these 2 ids rows.
Expected results should be
Table 1 -
IDs | Value | Address |
---|---|---|
A1 | Two | US - 50878 |
A2 | Three | US - 50879 |
Table 2 -
IDs | Value | Address |
---|---|---|
A5 | Four | US - 50888 |
A6 | Five | US - 50898 |
答案1
得分: 1
在"Transform Data"中,对每个表格和你的异常数据进行左反连接合并。
之前:
之后:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论