0

已使用以下代码创建自定义列,但它卡在无法识别 SWITCH 函数的表达式错误:

= Table.AddColumn(#"Removed Columns", "Empolyees", each SWITCH([Index],  
1, Empolyees = "Chris1",   
2, Empolyees = "Chris2",
3, Empolyees = "Chris3",
4, Empolyees = "Chris4", 
5, Empolyees = "Chris5",
6, Empolyees = "Chris6",
7, Empolyees = "Chris7",
8, Empolyees = "Chris8",
BLANK()
))

我试过删除引号,更改列名,但都无济于事。请指教。提前致谢!

4

2 回答 2

3

您混淆了M 和 DAX。它们是两种不同的语言,都在 Power BI 中使用。SWITCH()是一个 DAX 函数,因此它不能用于M query您正在编写的。

您可以用M中的表达式SWITCH替换逻辑:if-then-else

= Table.AddColumn(#"Removed Columns", "Employees", each if [Index] = 1 then "Chris1" else if [Index] = 2 then "Chris2" else if [Index] = 3 then "Chris3" else if [Index] = 4 then "Chris4" else if [Index] = 5 then "Chris5" else if [Index] = 6 then "Chris6" else if [Index] = 7 then "Chris7" else if [Index] = 8 then "Chris8" else "")

结果

完全取决于您想要实现的目标,可以使用其他功能,但我暂时保持这种方式,而不是做出假设。

于 2018-04-09T09:11:10.400 回答
1

最好将员工列表存储在一个表中,并将其与您的查询合并。您可以在查询中生成一个表 - 例如:

let
    Source = Excel.CurrentWorkbook(){[Name="MyTable"]}[Content],
    TempTable = #table(
        {"ID","Name"},{
            {1,"Employee 1"},
            {2,"Employee 2"},
            {3,"Employee 3"},
            {4,"Employee 4"},
            {5,"Employee 5"}
            }
        ),
    #"Merged Queries" = Table.NestedJoin(Source,{"ID"},TempTable,{"ID"},"Join",JoinKind.LeftOuter),
    #"Expanded Join" = Table.ExpandTableColumn(#"Merged Queries", "Join", {"Name"}, {"Name"})
in
    #"Expanded Join"

更好的做法是将员工 ID/姓名存储在单独的表中,并以相同的方式加入。

于 2018-04-27T07:59:10.530 回答