Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Preparing for a certification exam? Ask exam experts all your questions on May 15th. Register now.
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
Hi @JAgius,
Could you please mark the proper answer as solution or share the solution if it's convenient for you?
Best Regards!
Dale
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.
Best Regards,
Dale
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
76 | |
75 | |
70 | |
47 | |
41 |
User | Count |
---|---|
64 | |
41 | |
31 | |
30 | |
28 |