Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
Hi,
I want to create a new custom column by concatenating below 4 columns
Below screenshot shows the column name and final uid filed which is the desired output.
Thank you.
Solved! Go to Solution.
Hi, @Learner1585 [Code] goes last in your desired output
uid = Table.AddColumn(
your_table, "UID",
each [ID] & Text.From(Number.From([ActivityDate])) & Text.From(Number.From([Calendar Day])) & [Code]
)
Hi, @Learner1585 [Code] goes last in your desired output
uid = Table.AddColumn(
your_table, "UID",
each [ID] & Text.From(Number.From([ActivityDate])) & Text.From(Number.From([Calendar Day])) & [Code]
)