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))
Ahmedx
1 year agoSuper User
pls try this
[
a= Text.Replace([WorkLoadDetails],"SC1, ",""),
b = Splitter.SplitTextByAnyDelimiter({", "})(a),
c = Text.Combine(b,"|")
][c]
- kulkarni21vinee1 year agoFrequent Visitor
Thank you Ahmedx @ example which was shared, was just for demo. I have edited post with how data and entire query actually looks like just to give clearity
- Ahmedx1 year agoSuper User
the easy way is to add a new sun and write
=Text.Range([Column1],0,Text.Length([Column1])-1)- kulkarni21vinee1 year agoFrequent Visitor
This is very interesting solution, however, it replaces delimiter pipe between all the WorkLoadDetails. I just need to remove extra which gets added after last record.