Forum Discussion
bballjoe12
4 years agoFrequent Visitor
How do I create a new table based off another column's rows?
I have a table (the table name is "Tickets") that has 53,000 ticket #s. On this table, the ticket #s are all unique. I have another table (the table name is "Ticket History") that includes ticket #...
- 4 years ago
Hi bballjoe12 ,
You mean remove all rows from Tickets History table where thicket numbers have not appeared in Ticket Number table?
This dax code:
Combined Tables = FILTER('Ticket History',[Ticket Numbers] in VALUES(Tickets[Ticket Numbers]))Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
amitchandak
4 years agoSuper User
bballjoe12 , In power query you can use merge.
https://radacad.com/append-vs-merge-in-power-bi-and-power-query
and in Dax you can try natural inner join
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/
- bballjoe124 years agoFrequent Visitor
I tried the innerjoin route and got this error message:
'No common join columns detected. The join function 'NATURALLEFTOUTERJOIN' requires at-least one common join column.'