Power bi combine different column from DAX
Here we will see how to combines different columns using DAX using Power BI. I will combine two-column that is Customer ID and Customer Name using DAX from the order table.
- Open your power bi desktop. Load the Data from the Get data.
- Go to the Data view tab. Click on New table from the ribbon.

- Then we will write the DAX function to combine the two different columns by using Concatenate() in power bi desktop.
- The Dax function is Combine = CONCATENATE(Orders[Customer ID],Orders[Customer Name]).

Results
