using
Code:
program:
new_dates = '';
for dates in '#datesread':
converted = format_date(dates, 'MMMM d yyyy');
new_dates = list_union(new_dates, converted, ',')
rof
seems to work, though the dates are backwards for some reason
EDIT: I fixed it by swapping the order of the list_union. I'm not sure i understand what happened but it works!