Expression.Error: Evaluation resulted in a stack overflow and cannot continue.
I'm trying to add a custom column so I have a DATEID in my Date table it causes a stack overflow. Thought this would be the forum for this error. The date table contains dates from 1980 to 2038.
Formulae for new column in DATE TABLE:
Table.AddColumn(Time, "DateKey",
each
Number.ToText(Date.Year([Date])) &
Text.PadStart(Number.ToText(Date.Month([Date])),2,"0") &
Text.PadStart(Number.ToText(Date.Day([Date])),2,"0"
)
)
