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
JAgius
Regular Visitor

Query: Assigning Rows to columns

 Hey Guys,

 

i have two queries and have to combine them. One are the Headers for the desired Columns and in my other i have all the data just in one Column. They are 24 Columns and the Value of Row1 has to be combined to Column1 , Row2 to Column2.... Row25 to Column1.....

 

Is this possible ? Thanks in Advance

 

 

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @JAgius,

 

Could you please mark the proper answer as solution or share the solution if it's convenient for you?

 

Best Regards!
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Employee
Employee

Hi @JAgius,

 

Two approaches here. If you are familiar with R, you can try the approach 1. 

1. R code.

# 'dataset' holds the input data for this script
c <- dataset$Value  
length(c) <- prod(dim(matrix(c, ncol = 24))) # this step will insert null instead of recycling.
temp <- matrix(c, ncol = 24, byrow = T)
result <- data.frame(temp) # Power BI accept data frame.

2. Using pivot function. Please check out this file

Query_Assigning_Rows_to_columns

 

Best Regards,

Dale

 

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.