Hi,
I have a lsit of a list of dates produced by uisng ;
the output of which is :
but I need the dates is the lists to be the start of the moth, but can't get it right as to where Date.StartOfMonth should be placed , I just keep getting errors.
Richard
I have a lsit of a list of dates produced by uisng ;
Power Query:
Table.AddColumn(#"Changed Type", "Custom", each
List.Transform(
{ Number.From( [#"Sart Date "])..Number.From([End Date] )}, (_)=> Date.From(_) ) )
the output of which is :
but I need the dates is the lists to be the start of the moth, but can't get it right as to where Date.StartOfMonth should be placed , I just keep getting errors.
Richard