Forum Discussion
Thiviya
2 years agoFrequent Visitor
Employee id same length
Hi,
How do I update the employee id to have the same length as other employee i.e 6 characters ?
=Table.TransformColumns(PreviousStepName,{"Manager ID",each Text.PadStart(Text.From(_),6,"0")})
4 Replies
- wdx223_DanielCommunity Champion
=Table.TransformColumns(PreviousStepName,{"Manager ID",each Text.PadStart(Text.From(_),6,"0")})
- ThiviyaFrequent Visitor
= Table.TransformColumnTypes(AddedCustom,{"Manager ID", each Text.PadStart(Text.From(_),6,"0"}})
- AnonymousNot applicable
- ThiviyaFrequent Visitor
Is it how should be ?