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

Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now

Reply
Avichai_ka
Regular Visitor

Pivot\Unpivot

I have table with a few columns, I filter to specific Order for the purpose of the example, 

Avichai_ka_0-1695126906402.png

I want to show 1 row for all orders that all type paper get his QTY .

sometimes I have 3/4/5... types paper 

 

I try this : 

Avichai_ka_1-1695127195111.png

 

Avichai_ka_3-1695127227299.png

 

1 ACCEPTED SOLUTION
mussaenda
Super User
Super User

Hi @Avichai_ka ,

 

mussaenda_0-1695192200527.png

 

This might not be the most elegant way to achieve what you need. But have a check on this for the idea

View solution in original post

7 REPLIES 7
mussaenda
Super User
Super User

Hi @Avichai_ka ,

 

mussaenda_0-1695192200527.png

 

This might not be the most elegant way to achieve what you need. But have a check on this for the idea

wow!!!
This is working, I try now to remove "WHERE" for to be dinamic

wdx223_Daniel
Super User
Super User

NewStep=Table.Combine(Table.Group(YourTableInPhoto1,"Order/Line",{"n",each #table(List.RemoveLastN(Table.ColumnNames(_),2)&List.TransformMany({1..Table.RowCount(_)/2},each {"Paper","QTY"},(x,y)=>y&"_"&Number.From(x)),{List.RemoveLastN(Record.ToList(_{0}),2)&List.Combine(Table.ToRow([[Attribute],[Value]]))})})[n])

Hi, tnx. 
Can you explain step by step please? I can't copy-past M code as it is.

Sorry, I want to understand the process

Avichai_ka
Regular Visitor

Hi , 
I want to display for every order 1 row .
From source table (photo 1) I want to get :

Avichai_ka_0-1695184136291.png

Thank you

christinepayton
Super User
Super User

It looks like you are unpivoting and then re-pivoting - usually you would only do one of the two at a time, what are you trying to accomplish exactly?

AbhinavJoshi
Responsive Resident
Responsive Resident

Hi @Avichai_ka . To understand your question better, you would like the paper types as the row? Or can you share one sample output you are expecting. Thanks

 

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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

Top Solution Authors