1. Microsoft Learn: Understand star schema and the importance for Power BI. In the section "Denormalize snowflake dimensions
" the documentation states
"A snowflake dimension should be denormalized into a single table... You can use Power Query to consolidate the columns... It's a process of denormalization." This directly supports merging tables to simplify the model.
2. Microsoft Learn: Merge queries (Power Query). This document describes the technical process of merging
which is the implementation of the recommended solution. It states
"a merge query joins two existing tables together based on matching values from one or multiple columns."
3. Microsoft Learn: DAX function reference: RELATED. The documentation for the RELATED function specifies that it "requires that a relationship exists... When the function follows a relationship... it examines the value... and fetches the value... from the specified column in the related table." This confirms that by merging
the need for the function is removed as the data is no longer in a "related table."