cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
CameronKudos
Helper I
Helper I

Can the rows with text be lined up?

***EDIT***

I figured it out. Thanks anyway if you were trying.

 

Hi people, 

 

Hoping one of you genuises can help. I need to make it so all the text lines up. So there should be no 'nulls' but no text should be deleted.

CameronKudos_0-1653824715070.png

 

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @CameronKudos ,

If you want to create a new column to combine all the text values, you can try this query:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUXIEYiDyU4rViVYygnAiQBSIbwzhA5EHmG8CZDlDxUB8Uwg7EsY3g6v3BfPN4Xww1wLIcAXiKJiAJZDhBlHgBBYwNAAzoVpiAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Index = _t, Column1 = _t, Column2 = _t, Column3 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Index", Int64.Type}, {"Column1", type text}, {"Column2", type text}, {"Column3", type text}}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Index"}, "Attribute", "Value"),
    #"Filtered Rows" = Table.SelectRows(#"Unpivoted Other Columns", each ([Value] <> "")),
    #"Added Custom" = Table.AddColumn(#"Filtered Rows", "Custom", each #"Filtered Rows"[Value]),
    #"Extracted Values" = Table.TransformColumns(#"Added Custom", {"Custom", each Text.Combine(List.Transform(_, Text.From), ","), type text})
in
    #"Extracted Values"

vyingjl_0-1654053174374.pngvyingjl_1-1654053190812.png

 

 

If it is not your expected output, you can share more details about it.

Sample data and expected output would help tremendously.
Please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Best Regards,
Community Support Team _ Yingjie Li
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
v-yingjl
Community Support
Community Support

Hi @CameronKudos ,

If you want to create a new column to combine all the text values, you can try this query:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUXIEYiDyU4rViVYygnAiQBSIbwzhA5EHmG8CZDlDxUB8Uwg7EsY3g6v3BfPN4Xww1wLIcAXiKJiAJZDhBlHgBBYwNAAzoVpiAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Index = _t, Column1 = _t, Column2 = _t, Column3 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Index", Int64.Type}, {"Column1", type text}, {"Column2", type text}, {"Column3", type text}}),
    #"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Index"}, "Attribute", "Value"),
    #"Filtered Rows" = Table.SelectRows(#"Unpivoted Other Columns", each ([Value] <> "")),
    #"Added Custom" = Table.AddColumn(#"Filtered Rows", "Custom", each #"Filtered Rows"[Value]),
    #"Extracted Values" = Table.TransformColumns(#"Added Custom", {"Custom", each Text.Combine(List.Transform(_, Text.From), ","), type text})
in
    #"Extracted Values"

vyingjl_0-1654053174374.pngvyingjl_1-1654053190812.png

 

 

If it is not your expected output, you can share more details about it.

Sample data and expected output would help tremendously.
Please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

KT_Bsmart2gethe
Impactful Individual
Impactful Individual

HI @CameronKudos ,

 

If would be great if there are sample data available. It can be done in another way to achieve your desired outcome.

 

If not, based on screenshot, you can fill down all columns except the last one (i.e. Time spent travelling ...), then apply filter on the last column <> null.

 

Regards

KT

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.