Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I'm just wondering if there is anyway to compare the last refresh time of a dataflow to the latest data in a table in the dataflow?
The idea would be that this would alert us to issues with the data. Although the dataflow refresh is running the data in the table has not updated as expected and we can investigate.
Any help or guidance would be greatly appreciated!
Solved! Go to Solution.
@higgy7 - One way I can think of is to capture the last refreshed timestamp in the Data Flow (as a record in a table). You can do this in the Power Query Editor > Blank Query > Add the below code.
let
Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()}})
in
Source
You can now use the last refreshed timestamp and them compare with the last datetime in your datasource.
Hope this helps !
Did I answer your question? Mark my post as a solution! If not, please feel free to ask me.
Also, I would ❤ Kudos if my solution helped. It is a token of appreciation!
Thank you very much !
@higgy7 - One way I can think of is to capture the last refreshed timestamp in the Data Flow (as a record in a table). You can do this in the Power Query Editor > Blank Query > Add the below code.
let
Source = #table(type table[Date Last Refreshed=datetime], {{DateTime.LocalNow()}})
in
Source
You can now use the last refreshed timestamp and them compare with the last datetime in your datasource.
Hope this helps !
Did I answer your question? Mark my post as a solution! If not, please feel free to ask me.
Also, I would ❤ Kudos if my solution helped. It is a token of appreciation!
Thank you very much !
Thanks very much this is very useful.
Do you know of any way to create alerts or warnings to flag these kind of things or would be creating a report or dashboard be the only way to show?
Possibly using a tool like Microsoft Power Automate?
User | Count |
---|---|
24 | |
21 | |
11 | |
11 | |
10 |
User | Count |
---|---|
50 | |
31 | |
20 | |
18 | |
15 |