Forum Discussion

Caitlin_Knox's avatar
Caitlin_Knox
Advocate III
9 years ago
Solved

Creating a lookup table from data table

I have two files. One is several files merged into one [Merged] and the other is just one big file [Big]. The files that make up Merged were once extracted from the Big file, separated by region. Upd...
  • dearwatson's avatar
    9 years ago

    Instead of using the modelling engine (relationships) I suggest you use Power Query (The Query Editor) for this type of data tranformation... thats what it is built to do :)

     

    Assuming you have a common customer key bring in both tables [big] [merged] as seperate queries...

    1. open the query editor

    2. select the [big] query

    3. select "Merge Queries"

     

     

    4. merge on the customer key

     

     

    5. expand the merge columns

     

     

     

    6. create a calculated column for the data e.g. if merged.data = null then big.data else merge.data 

     

     

    anyway it will be something like that... this is a simple example but you can use power query to do all sorts of cool stuff. worth learning or check out the blogs like www.powerpivotpro.com which have great learning resources for this.