Power BI - Power Query 案例说明
Power BI - Power Query Case Statement
有没有办法在 Power BI 中做一个 case 语句,专门写在 M
中?
我有这样的列:
col_a col_b col_c
steve smith steve smith
null james james
sally null sally
Col_c
是 a 列和 b 列的串联。如果 a 列或 b 列为空,那么无论如何我都希望 c 列为空。
有什么建议吗?
M 具有相当标准的 if
、then
、else
语法。
if [col_a] = null or [col_b] = null
then null
else [col_a] & " " & [col_b]
有没有办法在 Power BI 中做一个 case 语句,专门写在 M
中?
我有这样的列:
col_a col_b col_c
steve smith steve smith
null james james
sally null sally
Col_c
是 a 列和 b 列的串联。如果 a 列或 b 列为空,那么无论如何我都希望 c 列为空。
有什么建议吗?
M 具有相当标准的 if
、then
、else
语法。
if [col_a] = null or [col_b] = null
then null
else [col_a] & " " & [col_b]