Hello, I am trying to create a summary table from two tables
Table 1 is a fact table with many row of data Expense items, and amounts.
Table 2 is a lookup table with only unuique rows and descriptions
I want to create new table from the fact table and grab the description from the vlookup table. I can not find a way to select the description from the vlookup table, relation ship exists between both.
Do you mean to create a table in DAX using SUMMARIZE, check the videos on tables and virtual tables.
or
merge tables (as new) in the query editor, effectivyle a vlookup in Power Query. Both will work.
See example.
Hi,
Ok, my pleasure. In that case I suggest you watch the relevant videos that Sam has concerning creating tables with DAX. Look for SUMMARIZE and ADDCOLUMNS functions in this respect.
Bear in mind, depending on the size of your model and nature of your data, the model may well be faster using Power Query for this instead of DAX. I prefer to use PQ whereever I can.