Hi,
I've been trying for some time, on an off, to concatenate a list of dates, the grouped data I have is like so;
but in the last arguemtn I need to combine a list of dates not text, so Text.Combine will not work, I've tried wrapping in
Date.ToText, but this just returns an error.
Any Suggestions?
I've been trying for some time, on an off, to concatenate a list of dates, the grouped data I have is like so;
Excel Formula:
Table.Group(Source, {"Product"}, {{"Count", each List.Sum([Sales]), type number},
{"st", each List.StandardDeviation([Sales]), type number},
{ "who sold what " , each Text.Combine( List.Distinct( [Sales rep]) ," , " ) }} )
but in the last arguemtn I need to combine a list of dates not text, so Text.Combine will not work, I've tried wrapping in
Date.ToText, but this just returns an error.
Any Suggestions?