How do you combine two columns to produce a composite key:
I have a Date column and an Employee ID column and i'd like to format the date into YYYYMMDD
and the final result would then be YYYYMMDDXXXXXX where XXXXXX is the Employee ID.
Solved! Go to Solution.
Usually you can merge columns but I don't think that will give the right format.
So I would suggest to add a custom column with formula:
Date.ToText([Date],"yyyyMMdd")&Text.From([Employee ID])
Text.From is not required if Employee ID is text already, but you forgot to mention.
Usually you can merge columns but I don't think that will give the right format.
So I would suggest to add a custom column with formula:
Date.ToText([Date],"yyyyMMdd")&Text.From([Employee ID])
Text.From is not required if Employee ID is text already, but you forgot to mention.
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
User | Count |
---|---|
212 | |
53 | |
45 | |
41 | |
40 |
User | Count |
---|---|
270 | |
210 | |
72 | |
70 | |
65 |