Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将以下 Spotfire 表达式转换为 DAX 查询?
Rank(RowId(),"asc",[ACT_ID],[REPORT_END],[ACTIVITY_END_DATE]
如果您想对某事进行排名,请使用:
https://dax.guide/rankx/
RankMeasure = RANKX ( 'TableNameHere', [YourMeasureToRankOn], [OrderOn], ASC/DESC )