如何在使用条件字符串维度混合数据时执行 table 计算

How to perform table calculation when blend data using conditional string dimensions

我分析的一个常见用例是混合辅助数据源,然后使用各种独立度量进行 table 计算(因此我无法应用过滤器)。条件是offer status = hired,但是offer status可以包含我不同的回复类型。

IF
ATTR([Offer Status]) = "Hired"
Then AVG([Comp_File].[Cash PTM])
Else [Null] END

由于我正在混合数据源,因此必须聚合值。

这是给笔记本的 link:https://community.tableau.com/message/671932?et=watches.email.thread#671932

我解决了这个问题。我在 Tableau 会议上参加了 'Tableau Doctor' session,专家确认由于操作顺序,此功能在混合上是不可能的,混合最后发生在 Tableau 的处理 logic/order 上操作。

要解决,请使用左连接。