Forum Discussion

Mr_Glister's avatar
Mr_Glister
Advocate II
8 years ago
Solved

Split and append table to reduce data load?

Hi, I'm loading sales data from a SQL server.  My sales data goes over many years but there is no need to load all the data every time with each refresh.   I thought I would duplicate my original...
  • Greg_Deckler's avatar
    8 years ago

    No, that won't work that way. What you are doing just prevents having duplicate rows in two different tables (if you never load the first query that is). Essentially, the Append statement is still going to execute the query you specify for your historic data. What I would suggest is that you have your two queries. Load the first and second queries. Then disable Load for your first query (historic). Then, use the UNION function in DAX to create a New Table that UNION's your two tables together. In this way, you will only get updates when you refresh data but you will have a single table that appends both together.