TaskData

notification

Formula

let(
	tasks,
	/* Get tasks that have information on the Date property and are not Done*/
	prop("TaskData").filter(
	current.prop("Status") != "Done" and not empty(current.prop("Date"))
	),
	/* Sort the tasks by date: earliest to oldest*/
	tasks.sort().map(
		/* For each task: display the date as "MM/DD/YYYY" as well as the Name */
		join([current.prop("Date").formatDate("MM/DD/YYYY"), current.prop("Name")], " - ")
	).join("\\n")
)

Made by lth_29