Power BI。在条形图中合并2个图例

时间:2018-12-15 10:57:07

标签: powerbi dax m

我有2张桌子:

This is the relationship between the tables.

This is the Channel table

This is the Feedback table

This is the visualization

基本上,在条形图上,我需要将传真和邮件结合在一起,因为传真有点过时。但是,如果将两行合并在一起,则表之间的关系链接将无法正常工作。有什么办法可以做到吗?

1 个答案:

答案 0 :(得分:0)

您可以将计算列添加到渠道表:

Report Name = 
IF ( 
    Channel[Name] IN { "Mail", "Fax" },
    "Mail / Fax",
    Channel[Name]
)

然后将Report Name字段用于图表图例