Forum Discussion
Dev_B_PBIing
3 years agoFrequent Visitor
Show parentheses in table
Hello, I'm a newer user. I have a table that contains a concatenated column of Idea names and a unique identifier. I'm wanting to have the unique identifier show with parentheses and cannot figure...
- 3 years ago
You can try something like...
Table.AddColumn(#"Changed Type2", "Unique Idea Name", each [Idea name]&" ("&[Idea ID]&")")
jgeddes
3 years agoSuper User
You can try something like...
Table.AddColumn(#"Changed Type2", "Unique Idea Name", each [Idea name]&" ("&[Idea ID]&")")
Dev_B_PBIing
3 years agoFrequent Visitor
Thanks that did it! I needed the ") at the end.