Forum Discussion
Convert every 6 rows into columns
- 5 years ago
Brazil is great, I'm helping you from Portugal! 😀
Sorry if I skipped some detailed steps...
You need to go here:
After that, write the following code (for each column you gonna need), adapting your if-statement to each column.
E.g.:
Column Name = if [Column 2] = "Name" then [Column 1] else null Column Id = if [Column 2] = "Id" then [Column 1] else null ...Um abraço! 😀
Hi Anonymous ,
I think I've found a receipt for this!
Used the following sample data:
Then created 4 custom columns with the following code:
if [Column 2] = ##Column_to_be_created then [Column 1] else null
After that, you need to fill-down the first custom column created and fill-up the last one and the penultimate
To finish, filter the third column to eliminate null values
Note: This solution may not be feasible for other scenarios, and it is better to confirm that you do not "lose" data through the process...
Any questions, don't hesitate!
Best Regards,
Eduardo
[Edited because sample data was wrong.]