Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
I have a table with date column and To, From and CC emails columns. I want to keep date column and second column include first TO values then FROM values then CC values in powerBI.
Solved! Go to Solution.
Hi @Diksha
You can refer to the following example.
You can put the following code to advanved editor in power query
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwMtY31DdU0lFyBGInIHZWitVBkYAIghTAJYxQdLhgkwhDlTAGSziDBVGMMoFLuAKxm1JsLAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t, To = _t, From = _t, CC = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type date}, {"To", type text}, {"From", type text}, {"CC", type text}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each "To"&":"&[To]&" "&"From"&":"&[From]&" "&"CC"&":"&[CC]),
#"Grouped Rows" = Table.Group(#"Added Custom", {"Date"}, {{"Content", each Text.Combine([Custom],"; ")}})
in
#"Grouped Rows"
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Diksha
You can refer to the following example.
You can put the following code to advanved editor in power query
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjIwMtY31DdU0lFyBGInIHZWitVBkYAIghTAJYxQdLhgkwhDlTAGSziDBVGMMoFLuAKxm1JsLAA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Date = _t, To = _t, From = _t, CC = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Date", type date}, {"To", type text}, {"From", type text}, {"CC", type text}}),
#"Added Custom" = Table.AddColumn(#"Changed Type", "Custom", each "To"&":"&[To]&" "&"From"&":"&[From]&" "&"CC"&":"&[CC]),
#"Grouped Rows" = Table.Group(#"Added Custom", {"Date"}, {{"Content", each Text.Combine([Custom],"; ")}})
in
#"Grouped Rows"
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 13 | |
| 11 | |
| 10 | |
| 9 | |
| 6 |