Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Diksha
Regular Visitor

undefined

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.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

vxinruzhumsft_0-1709519277226.png

 

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.

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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

vxinruzhumsft_0-1709519277226.png

 

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.

 

dufoq3
Community Champion
Community Champion

I want world peace...


Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors