Forum Discussion
dev814
5 years agoRegular Visitor
Eliminate middle initial from row
I have a large data set. I have a column with first names, however, some of the rows have first names that also include middle intials or middle names. Example... Mary A. Mary Ann I nee...
Anonymous
5 years agoNot applicable
You can use Text.BeforeDelimiter:
Table.TransformColumns(PriorStep, {{"Name", each Text.BeforeDelimiter(_, " ")}})
---Nate