Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Unable to perform Count

I created a new table using Union and Summarize: Summary Table = Union( Summarize( 'Table 1', 'Table 1' [ID], 'Table 1' [Type]), Summarize ('Table 2', 'Table 2' [ID], 'Table 2' [Type])) When I inse...
  • Deku's avatar
    1 year ago

    You summarize which returns the distinct combo of id and type per table. You then union them. You would only expect the distinct count and count to differ if you have id and type combo common between table 1 and 2. Is this the case?