0

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

Many thanks!

aravind
  • 1
  • 1
  • 1
  • 4

2 Answers2

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

  • 1
    The DAX measure updates with every report refresh, the M-formula with the data refresh. Only in PowerBI Desktop these things happen at the same time. However, this was not the question. I guess it's not possible to show the current date and time in a visual and it doesn't make much sense either. – Peter Apr 23 '20 at 17:28
1

Current Date & Time:

MyCurrentDateAndTime := NOW()

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

StelioK
  • 1,771
  • 1
  • 11
  • 21