Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
konstee
Frequent Visitor

Generate table with 3x columns from other table with 6 columns

Hey, I have the following problem shown in the picture.

I need to solve it with DAX language.

Are formulas useful here  like
A) Generateseries 
B) Addcolumns( Summarize ( ) ) 

 

How do I create this new table?

 

Situation and desired output QUESTION.jpg

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @konstee ,

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
UNION(
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Alex","Cost",'Table'[Cost Alex]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Ben","Cost",'Table'[Cost Ben]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Cris","Cost",'Table'[Cost Cris]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost David","Cost",'Table'[Cost David]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Eric","Cost",'Table'[Cost Eric]))

2. Click [Year] to set as Sort ascending.

vyangliumsft_0-1628235103255.png

3. Result:

vyangliumsft_1-1628235103259.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @konstee ,

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
UNION(
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Alex","Cost",'Table'[Cost Alex]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Ben","Cost",'Table'[Cost Ben]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Cris","Cost",'Table'[Cost Cris]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost David","Cost",'Table'[Cost David]),
    SELECTCOLUMNS('Table',"Year",'Table'[Year],"Employee","Cost Eric","Cost",'Table'[Cost Eric]))

2. Click [Year] to set as Sort ascending.

vyangliumsft_0-1628235103255.png

3. Result:

vyangliumsft_1-1628235103259.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

konstee
Frequent Visitor

Hi @FrankAT 

 

unfortunatelly PowerQuery is not an option, as the initial table is already an extra table which was created with DAX.
I am looking for an DAX solution.

FrankAT
Community Champion
Community Champion

Hi @konstee ,

the easiest, shortes an best way to get the desired result is to use Power Query. Unpivot the Cost columns.

 

With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.