在 PowerBI 中复制子查询
replicate subquery in PowerBI
我有两个 table:
合并是在 JLE_LineTypeCategory 的 field name
值上匹配 JobLedgerEntry 上的 Type
和 Line Type
列。在 SQL 中,我会做这样的事情:
SELECT optiontext
FROM metadataTable md
WHERE TableName='JobLedgerEntry'
AND FieldName='LineType'
AND md.OptionInteger=JobLedgerEntry.[Type]
) as 'Type'
但我不确定如何在 BI 中执行此操作。基本上,我正在查看 JLE_LineTypeCategory
table 中的字段值以匹配 JobLedgerEntry
table.
中的列名
因为我只需要一组字段描述符,所以我将 LineTypeCategory table 筛选为 JobLedgerEntry.LineType 字段的 3 个可能值。然后我在 optionInteger-LineType 字段上合并了两个 table。
我有两个 table:
合并是在 JLE_LineTypeCategory 的 field name
值上匹配 JobLedgerEntry 上的 Type
和 Line Type
列。在 SQL 中,我会做这样的事情:
SELECT optiontext
FROM metadataTable md
WHERE TableName='JobLedgerEntry'
AND FieldName='LineType'
AND md.OptionInteger=JobLedgerEntry.[Type]
) as 'Type'
但我不确定如何在 BI 中执行此操作。基本上,我正在查看 JLE_LineTypeCategory
table 中的字段值以匹配 JobLedgerEntry
table.
因为我只需要一组字段描述符,所以我将 LineTypeCategory table 筛选为 JobLedgerEntry.LineType 字段的 3 个可能值。然后我在 optionInteger-LineType 字段上合并了两个 table。