Forum Discussion
How to combine three columns into one?
- 7 years ago
This is an example of what I want to do. In the table I am working on there are three columns, the first three, of zipcodes. I want to combine all of them into one column, All ZipCodes.
Anonymous
Hi,
Use Summarize with union function as shown below-
- Anonymous5 years agoNot applicable
@AngadK , i have a similar requirement, tried the union dax with Summarize its throwing an error, can you please help me with this
Project IDs = UNION(SUMMARIZE('Table','Table'[Project_ID1]),SUMMARIZE('Table','Table'[Project_ID2]),SUMMARIZE('Table','Table'[Project_ID3]),SUMMARIZE('Table','Table'[Project_ID4]))- Anonymous5 years agoNot applicable
Anonymous , Have you written the union dax formula on "Create a new table using DAX" pane?
- Anonymous5 years agoNot applicable
Anonymous , i got if after using the dax in a new table, is it possible to combine them in the same table?
What i want: am planning to show the hours spent on each project on a particular date, i have 4 columns of project IDs for each person everyday hence i want to combine the IDs into one column.