Forum Discussion
Guilhermealc
7 years agoRegular Visitor
Refresh once a month and keep old data
Hello, I have a financial dataset that updates once a month. It’s on a SQL Server, and I execute a SQL query of all data everytime I refresh my powerbi. Like SELECT * FROM FinancialTable Where Date...
Greg_Deckler
Community Champion
7 years agoWell, you could do this with somewhat of a manual approach. In essense, 3 queries. First query gets everything <= some date. Second one gets everything > the same date. You Append the two queries together. You disable refresh on the first query. Now you have significantly reduced the amount of data that you are refreshing. You can later go in and adjust the dates in the queries and enable refresh on the first query. This will result in a large data load, then you disable the refresh on the query again.
It's manual, but it works without Premium.
Guilhermealc
7 years agoRegular Visitor
Hello Greg, thank you for the reply. This could be a solution, but my monthly data can’t be changed, so I would have to do this manual approach every month.
I’m thinking to make the monthly load using sql server agent by inserting the data on a new table, but I would like to have a solution just using Power bi.
I’m thinking to make the monthly load using sql server agent by inserting the data on a new table, but I would like to have a solution just using Power bi.
- v-danhe-msft7 years ago
Microsoft Employee
Hi Guilhermealc,
Based on my research, you could refer to below blog.
https://www.thebiccountant.com/2017/01/11/incremental-load-in-powerbi-using-dax-union/
Regards,
Daniel He