dax 如果列为空或空白,我如何将我的结果设置为上一列

dax if column is null or blank how can I set my as result previous column

目前我的 dax 公式是 =pathitem([hierarchy path]), 3) for column3 但我想添加公式,如果列为空或 null 从 column2 获取值。我该如何为此编写 dax 公式?

你可以使用这样的东西:

=
IF (
    ISBLANK ( PATHITEM ( [Hierarchy Path], 3 ) ),
    [Column3],
    PATHITEM ( [Hierarchy Path], 3 )
)

第 3 列必须是文本数据类型。