let
// Source table for demo:
Source = Table.FromList(
List.Dates(#date(2020,1,1),10,#duration(1,0,0,0)),
Splitter.SplitByNothing(),
type table [ColumnWithDates=date]
),
AllDatesAsToday = Table.TransformColumns(Source,
{"ColumnWithDates", each Date.From(DateTime.LocalNow()), type date}
)
in
AllDatesAsToday
EDIT: I did not mention the following option as it doesn't allow keeping the types (with same Source as above):
AllDatesAsToday = Table.ReplaceValue(Source, each [ColumnWithDates], each
Date.From(DateTime.LocalNow()),
Replacer.ReplaceValue, {"ColumnWithDates"}
)
If this solves your problem please mark as answer to help others with a similar scenario - Thanks