I built a summarizing table because my data set is not normalized and I need a particular field (BusinessUnit) to join several tables.
This business unit occurs in all 3 tables but is named differently in each (the definition itself is the same, just different names).
the summary:
BusinessUnit = Summarize('Table1', 'Table1'[YTMCU],"Gross",SUM('Table1'[Gross]))
The resultant table appears clean and as I expect, however when I try to relate it back to the original (and the other 2) I get an error.
"We cannot create a relationship between 'BusinessUnit '[YTMCU] and 'Table1'[YTMCU]. This could be because there is missing intermediate data to connect the two columns."
What does this error mean, does anyone have any guidance?