Forum Discussion
kulkarni21vinee
1 year agoFrequent Visitor
Find, If its not a last record
I wanted to append delimiter | (pipe symbol) to differentiate each Maintenance Record, of a List, unless it’s not last record Also, specific Maintaince Records would be filtering out based upon if-e...
- 1 year ago
pls try this
=Text.BeforeDelimiter([Column1],"|",RelativePosition.FromEnd) - 1 year ago
pl try
=Text.Combine( List.RemoveLastN( Text.ToList([Column1]),1))
Omid_Motamedise
1 year agoSuper User
Use the following code
let
#"Filtered Rows" = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMjAwMFTQVQh2NtRRCMlXSMlXcIIxnJVidcAKjIAKIEIuMDk3pdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [WorkLoadDetails = _t]),
Transform = Table.TransformColumns(#"Filtered Rows",{{"WorkLoadDetails", each Text.Replace(Text.Combine(List.RemoveItems(Text.Split(_," "),{"SC1,"})),",","|")}})
in
Transform
- kulkarni21vinee1 year agoFrequent Visitor
Thank you Omid_Motamedise example which was shared, was just for demo. I have edited post with how data and entire query actually looks like just to give clearit