Forum Discussion
credencial
4 years agoFrequent Visitor
Creating a new table using DAX
Hello folks,
I need help. I have three tables (A,B,C), the first one is the base and the NEW TABLE must have values contained in TABLE B and TABLE C. Like this:
Can somebody help me?
credencial , Check if this can help
Union(summarize(TableB, [COD], [Date], "Value", Sum(TableB[Price])) , summarize(TableC, TableC[COD], TableC[Date], "Value", Sum(TableC[Price])) )
2 Replies
- amitchandakSuper User
credencial , Check if this can help
Union(summarize(TableB, [COD], [Date], "Value", Sum(TableB[Price])) , summarize(TableC, TableC[COD], TableC[Date], "Value", Sum(TableC[Price])) )
- credencialFrequent Visitor
Thank so much. I used summarizecolumns with FILTER to create new table with only cod values contained in the table A. 🙂