Forum Discussion
Anonymous
10 years agoNot applicable
create custom column concatenated
I'm fumbling create a custom column in a table that has already been loaded, this column will be used to relate that table to another, however I am unable to create this custom column. I need to con...
- 10 years agoText.From([Column) & Text.From([Column2]) & Text.From([Column3])
Anonymous
10 years agoNot applicable
Vvelarde
10 years agoCommunity Champion
Text.From([Column) & Text.From([Column2]) & Text.From([Column3])
- Anonymous10 years agoNot applicable
taking advantage, I have a date field that is in the format (dd / mm / yyyy hrs) and need to create a custom column from that field that presents only the yyyy, tried some string functions however nothing.
- Anonymous10 years agoNot applicable
I suspect "The Feature That We Don't Call Power Query" is the best place to do this (which is what folks are doing here) ... but you can also do this via a dax calculated column as well.
something like:
MyCalcColumn = MyTable[MyColumn1] & "-" & MyTable[MyColumn2] & "-" & YEAR(MyTable[MyDateColumn])
- Vvelarde10 years agoCommunity Champion
hi Anonymous
YearColumn = YEAR(TablewithDate[DateField])
- Anonymous10 years agoNot applicable