使用Power BI Measure获取最近一个月的名称?
我有2列,状态和日期。 “状态”列包含三个值(“过去”,“很快”,“校准”)。
我想分别显示针对这些状态类别的每个状态类别计算的最新月份名称。具体来说,我想创建一个表面视觉效果,其中我们有3个不同的列,上面有“过去”,“应得的”和“校准”的名称。这些列显示了与每个状态类别相对应的日期的最新月份,如下屏幕截图所述。
样本输入:
所需的输出:
I have 2 columns, Status and Date. The "Status" column contains three values ('Past Due', 'Soon Due', 'Calibrated').
I would like to display the most recent month name calculated for each of these status categories separately. Specifically, I would like to create a table visual where we have 3 different columns with the names "Past Due", "Soon Due", and "Calibrated". These columns display the most recent month name for dates corresponding to each status category, as outlined in the screenshots below.
Sample Input:
Desired Output:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
格式([DateField],“ MMM”)是这里的关键DAX函数。
我概述了下面的3个措施,这些措施应该为您带来所需的结果。将“ Table1”替换为您的表名。
过去的到来
很快到了
校准
表中的度量
FORMAT([DateField], "MMM") is the key DAX function here.
I've outlined the 3 measures below that should give you the result you want. Replace "Table1" with your table name.
Past Due
Soon Due
Calibrated
Measures in Table