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

查看:24
本文介绍了在 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天全站免登陆