如何创建 returns 数据集中最新状态(非数字)的度量?
How can I create a measure that returns the newest status (non-numerical) in the data set?
我在 Power Pivot 中有一个名为 tabStatus 的 table(见图)。我想为此 table 创建一个度量,即 returns status_code(文本字段)的最新状态(= highest/newest status_change 列中的时间戳)。
我觉得这应该很容易(我是 DAX 新手)。关于如何创建此度量的任何想法?
感谢大家的帮助!
我假设您的 Status_change 列在您的语言环境中是有效的 date/time 格式。
Newest Status:=CALCULATE(LASTNONBLANK(tabStatus[Status_code],0),filter(tabStatus,max(tabStatus[Status_change])))
我在 Power Pivot 中有一个名为 tabStatus 的 table(见图)。我想为此 table 创建一个度量,即 returns status_code(文本字段)的最新状态(= highest/newest status_change 列中的时间戳)。
我觉得这应该很容易(我是 DAX 新手)。关于如何创建此度量的任何想法?
感谢大家的帮助!
我假设您的 Status_change 列在您的语言环境中是有效的 date/time 格式。
Newest Status:=CALCULATE(LASTNONBLANK(tabStatus[Status_code],0),filter(tabStatus,max(tabStatus[Status_change])))