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
the easy way is to add a new sun and write
=Text.Range([Column1],0,Text.Length([Column1])-1)
kulkarni21vinee
1 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.
- Ahmedx1 year agoSuper User
it replaces only the last character
but you just need to add a new column
- kulkarni21vinee1 year agoFrequent Visitor
- Ahmedx1 year agoSuper User
pls try this
=Text.BeforeDelimiter([Column1],"|",RelativePosition.FromEnd)