Forum Discussion
mbrawn
9 years agoFrequent Visitor
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...
- 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.
Greg_Deckler
9 years agoCommunity Champion
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.
mbrawn
9 years agoFrequent Visitor
Perfect thank you Greg_Deckler!
Now I need to work out how to link this to the existing tables so I can use the column in my report but that's a separate issue for me to work out.
Thanks again