Forum Discussion
Power Query Date
Hi JustinSane
If Year and Month are Text values:
= Text.Combine({"TEST ", Year, Month})
or
= "TEST " & Year & Month
If Year and Month are Numeric values:
= Text.Combine({"TEST ", Text.From(Year), Text.PadStart(Text.From(Month),2,"0")})
or
= "TEST " & Text.From(Year) & Text.PadStart(Text.From(Month),2,"0")
- JustinSaneMar 10, 2022Copper Contributor
Thanks!
Just tried your code and it gives me an error.
"Expression.Error: The name "Year" wasn't recognized. Make sure it's spelled correctly
- SergeiBaklanMar 10, 2022Diamond Contributor
The easiest was is on Power Query editor ribbon
Add Column -> Column From Examples -> All Columns
and add 2-3 samples, correct text where extra leading zero before month appears
Generated formula will be as Lorenzo suggested, but you don't need to care about syntax and data type.
- LorenzoMar 10, 2022Silver Contributor
Hi JustinSane
This probably means Year and Month are actually calculated fields as highlighted in the below example
in which case the formula for field TEST is:
= Table.AddColumn(PreviousStepName, "TEST", each "TEST " & Text.From([Year]) & Text.PadStart(Text.From([Month]),2,"0"), type text)
(appropriatly replace PreviousStepName)
If still not good please post at least a picture similar to the above one