Forum Discussion
Anonymous
3 years agoNot applicable
Transforming a messy text export
I have an extremely large text file that I need to extract useful information from. I wrote an example of what it looks like below. Basically I want to extract data to keep the green fields so that C...
- 3 years ago
Oh, you are trying to combine the protocol and department lines into a single row. Instead of using Table.Combine, use
Table.FromColumns({#"Added Custom"[Custom], #"Filtered Rows2"[Column2]})
artemus
3 years agoMicrosoft Employee
Oh, you are trying to combine the protocol and department lines into a single row. Instead of using Table.Combine, use
Table.FromColumns({#"Added Custom"[Custom], #"Filtered Rows2"[Column2]})
Anonymous
3 years agoNot applicable
Yes!!! Thank you!!