Forum Discussion
stephchnva
1 year agoFrequent Visitor
How do I extract the 17-alphanumeric characters in a column, delimiter
Hello guys, I need help. How do I extract the 17-alphanumeric characters in the "name" column. I've tried different ways of extracting by delimiter but it's just not working. Name 24/1...
- 1 year ago
Download example PBIX file with the code below
= try List.Select(Text.Split([Name], " / "), each Text.Length(_) = 17){0} otherwise nullRegards
Phil
PhilipTreacy
1 year agoSuper User
Download example PBIX file with the code below
= try List.Select(Text.Split([Name], " / "), each Text.Length(_) = 17){0} otherwise null
Regards
Phil
- ThxAlot1 year agoSuper User
= Table.AddColumn(dataset, "pq", each List.Select(Text.Split([Name], " / "), each Text.Length(_) = 17 and not Text.Contains(_, " ")){0}?)