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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
ardianfirman06
Frequent Visitor

DAX to transform table from Row into Column

Hi All,

 

I would like to summarize a table using DAX. is there any way to do it ? 

below are the scenario

 

From : Source of the table 

 

IDType
1A
1B
1C
2A
2C
2D
2E

 

Tobe 

 

Filter Type E and transform the table as below : 

 

IDABCD
1YesYesYesNo
2YesNoYesYes

 

Appreciate much for your help. 

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

Hi @ardianfirman06 ,

Please try to create a table with below dax formula:

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[ID],
    "A", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "A" ), "Yes", "No" ),
    "B", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "B" ), "Yes", "No" ),
    "C", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "C" ), "Yes", "No" ),
    "D", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "D" ), "Yes", "No" )
)

vbinbinyumsft_0-1689326428013.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
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

5 REPLIES 5
v-binbinyu-msft
Community Support
Community Support

Hi @ardianfirman06 ,

Please try to create a table with below dax formula:

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[ID],
    "A", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "A" ), "Yes", "No" ),
    "B", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "B" ), "Yes", "No" ),
    "C", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "C" ), "Yes", "No" ),
    "D", IF ( CONTAINSSTRING ( CONCATENATEX ( 'Table', [Type] ), "D" ), "Yes", "No" )
)

vbinbinyumsft_0-1689326428013.png

Please refer the attached .pbix file.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

thank you so much, this is solving my problem

Ashish_Mathur
Super User
Super User

Hi,

Drag ID to Rows and Type to Columns.  Write this measure

Measure = if(countrows(Data)>0,"Yes","No")

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi thank you for your suggestions. 

is there any possibility to do it on Summarize function ? 
I would like to used this transformation table for mapping to other table, since this table is not unique than I cannot make relationship to this table. 

Hi,

If that is your objective, then create a Pivot in the Query Editor.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.