电力商务智能。在条形图中结合 2 个图例
Power BI. Combine 2 legends in bar chart
我有 2 个表:
This is the relationship between the tables.
This is the Channel table
This is the Feedback table
This is the visualization
基本上,在条形图上,我需要将传真和邮件结合在一起,因为传真有点过时了。但是,如果我将这两行合并在一起,那么表之间的关系 link 将不起作用。有什么办法可以做到这一点?
您可以将计算列添加到通道 Table:
Report Name =
IF (
Channel[Name] IN { "Mail", "Fax" },
"Mail / Fax",
Channel[Name]
)
然后将 Report Name
字段用于您的图表图例
我有 2 个表:
This is the relationship between the tables.
This is the Channel table
This is the Feedback table
This is the visualization
基本上,在条形图上,我需要将传真和邮件结合在一起,因为传真有点过时了。但是,如果我将这两行合并在一起,那么表之间的关系 link 将不起作用。有什么办法可以做到这一点?
您可以将计算列添加到通道 Table:
Report Name =
IF (
Channel[Name] IN { "Mail", "Fax" },
"Mail / Fax",
Channel[Name]
)
然后将 Report Name
字段用于您的图表图例