Forum Discussion

mbrawn's avatar
mbrawn
Frequent Visitor
9 years ago
Solved

Power BI & Dynamics CRM - Merge Columns

I'm using Dynamics CRM as my data source and creating a report of Won Opportunities. In CRM there is a pre-determined list of products (Products Table) and there is also the ability to use 'written-i...
  • Greg_Deckler's avatar
    9 years ago

    If Append in Power Query is not working, you could try a UNION DAX function like:

     

    MyTable = UNION(DISTINCT(Sales[ItemDesc]),DISTINCT(Tickets[status]))

    This would be a New Table formula.