How to display current date and time in power bi visuals?

我与影子孤独终老i 提交于 2021-01-29 08:30:49

问题


Is it possible to add a card in power BI that shows the current date and tome time??

Many thanks!


回答1:


You can show only time of last data refresh. Use one of this:

  1. DAX Measure MyNow = TODAY() returns single date

  2. PowerQuery MyNow = DateTime.LocalNow() returns table with single row & col




回答2:


Current Date & Time:

MyCurrentDateAndTime := NOW()

The value will be updated each time you open the worksheet.



来源:https://stackoverflow.com/questions/55672251/how-to-display-current-date-and-time-in-power-bi-visuals

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!