Forum Discussion
Add row to a custome table after each refresh
Hi Community Experts,
I have a calculated measure. I want to write this measure to Power BI table(New Custome table) with current system time hour after each refresh as a new row. i.e. when query is refreshed after every hour, the calculated measure should be inserted with the current hour as a new row. Is this possible in Power BI ?
Thanks for your help
7 Replies
- mwegener
Most Valuable Professional
- AnonymousNot applicable
Create a blank dataset then in the advanced editor
let
Source = Table.FromValue(DateTime.LocalNow() ),
#"Renamed Columns" = Table.RenameColumns(Source,{{"Column1", "RefreshDate"}})
in
#"Renamed Columns"this should store the value when the dataset is refreshed.
YOu can also create new column in the existing table
- Raaz
Helper II
Thanks for your reply.
Your solution is overwriting the previous records. I need to preserve each row with each hour and previous calculated measure.
Expected Output
Measure Hour
12 11 (i.e.11AM)
9 12 (i.e. 12AM)
8 13 (i.e. 1PM)
---- ----- ----
2 17 (i.e. 5PM)
is this possible to update my table like this with each hourly refresh?
Thanks
- v-alq-msft
Community Support
Hi, Raaz
It is unavailable to directly insert a new row to a query generated previously. As a workaround, you may generate several queries and then append them together.
You may click 'Edit Query', go to Query Editor, create a new blank query, click 'Advanced Editor', input codes as below.
(value as number)=> let NewDate = DateTime.LocalNow(), Result = Table.FromRecords({[Value = value,Date = NewDate ]}) in ResultThen you may input value to generate a record with current datetime.
Finally you need to make one generated query selected, go to 'Home' ribbon, click 'Append Queries', set as below to add generated queries together.
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.