Forum Discussion
CSV values
Hi,
First of all thanks for reading this. I am new to PowerBI so I am hoping you could help me out. I have the following data
| # | Column Values |
| Request #1 | A,B,C |
| Request #2 | C,A |
As you can see in the table above my column values is seperated by a comma. What I wanted to achieve in my report is this.
| PowerBI | Count |
| Selection A | 2 |
| Selection B | 1 |
| Selection C | 2 |
I already tried the "Split column" features usinga delimiter, but when I use split into columns and use it in my report it did look great because somehow it looks like that data is not merging. When I tried to split into rows, it also affect my other column and duplicates it.
Thanks
21 Replies
- parry2kSuper User
Make sure to split it in rows and then you can get what you are looking for:
- TootsiePatootsiRegular Visitor
Hi,
Thanks for the reply. I tried it out but somehow other data was also duplicated
# Column Other Columns Request #1 A,B,C Value 1 Request #2 C,A Values 2 After splitting it my table turns into this which affects my other report:
# Column Other Columns Request #1 A Value 1 Request #1 B Value 1 Request #1 C Value 1 Request #2 C Values 2 Request #2 A Values 2
- dramusContinued Contributor
Split and Unpivot is your friend.
First split your "Column values" using a comma as the delimiter.
Then select the columns you just created and select unpivot.
Finally delete the "Attribute" column that was created.
You will end up with something that looks like this:
Here's the Power Query
let Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WCkotLE0tLlFQNlTSUXLUcdJxVorVQRI2Ago76zgqxcYCAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Requests = _t, #"Column Values" = _t]), #"Split Column by Delimiter" = Table.SplitColumn(Source, "Column Values", Splitter.SplitTextByDelimiter(",", QuoteStyle.Csv), {"Column Values.1", "Column Values.2", "Column Values.3"}), #"Changed Type" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Requests", type text}, {"Column Values.1", type text}, {"Column Values.2", type text}, {"Column Values.3", type text}}), #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Requests"}, "Attribute", "Value"), #"Removed Columns" = Table.RemoveColumns(#"Unpivoted Columns",{"Attribute"}) in #"Removed Columns"- TootsiePatootsiRegular Visitor
Hi,
Thanks for the reply. I am not familiar with PowerQuery yet and also Unpivot ill see if this could help and let you know - TootsiePatootsiRegular Visitor
Hi Dramus,
I tried the unpivot feature but somehow all my columns shows error and showing this error
We couldn't parse OData response result. Error: A value without a type name was found and no expected type is available. When the model is specified, each value in the payload must have a type which can be either specified in the payload, explicitly by the caller or implicitly inferred from the parent value
Thanks in advance
- parry2kSuper User
TootsiePatootsi columns will be duplicate once your split it to rows and that is the only way you can get what you are
looking for.