Forum Discussion
Mohammed-
1 year agoResolver I
Merge Column
Hi Please need help for merge 2 column in the same table to create a ne culomn the new column should be include the following 2004-01 2004-02 2004-03 2004- 04 ...
- Anonymous1 year ago
Hi Mohammed- ,
I create a table as you mentioned in Data Factory.
Then I think you can create a custom column.
Custom = Text.From([Year]) & "-" & Text.PadStart(Text.From([Mon]), 2, "0")Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- 1 year ago
Dir Sir,
Thanks for your Replay
I used your Formula
Table.AddColumn(#"Sorted rows", "Custom", each Text.From([Year]) & "-" & Text.PadStart(Text.From([Mon]), 2, "0"))it is working fine with meThis is the result after some trasnformationThanks Again
Anonymous
1 year agoNot applicable
Hi Mohammed- ,
I create a table as you mentioned in Data Factory.
Then I think you can create a custom column.
Custom = Text.From([Year]) & "-" & Text.PadStart(Text.From([Mon]), 2, "0")
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mohammed-1 year agoResolver I
Dir Sir,
Thanks for your Replay
I used your Formula
Table.AddColumn(#"Sorted rows", "Custom", each Text.From([Year]) & "-" & Text.PadStart(Text.From([Mon]), 2, "0"))it is working fine with meThis is the result after some trasnformationThanks Again