可视化Power Bi中的上次刷新日期 [英] Visualizing last refresh date in power bi

查看:594
本文介绍了可视化Power Bi中的上次刷新日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可以在Power BI中添加一张显示底层数据集最近一次更新的卡?

Is it possible to add a card in power BI that shows the last time the underneath dataset has been updated?

非常感谢!

推荐答案

您可以创建一个空白查询,并使用以下M查询创建一个单元格表:

You can create a blank query and use the following M query to create a single-cell table:

let
    Source = #table(type table[Last Refresh=datetime], {{DateTime.LocalNow()}})
in
    Source

然后您可以使用 Card 图像并将其拖动到该列中以进行显示。您可以重命名该字段以删除默认聚合。 (没关系,因为反正只有一行数据)

And then you can use the Card visual and drag in the column to show it. You can rename the field to remove the default aggregation. (It doesn't matter since there is only one row of data anyways)

每次刷新数据都会重新计算该值。

The value will be recalculated each time the data is refreshed.

这篇关于可视化Power Bi中的上次刷新日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆