A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Dear Jessica,
The built-in Excel option has no such features.
However, you can use Power Automate to do that.
You can just create a scheduled flow like the following. The flow filtered all tasks whose due date is two weeks after today and send an email notification to you.
Excel sheet:
.
Flow Details:
.
Compose: add(div(sub(ticks(addDays(formatdatetime(utcNow(),'yyyy-MM-dd'),14)),ticks('1900-01-01T00:00:00Z')),864000000000),1)
Filter Array: int(item()?['Due Date']) is equal to int(outputs('Compose'))
Compose2: items('Apply_to_each')?['Task']
Compose3: items('Apply_to_each')?['Due Date']
Value of Append to array variable:
{
"Task":"@{outputs('Compose_2')}",
"Due Date":"@{addDays('1899-12-30',int(outputs('Compose_3')), 'dd-MMM-yyyy')}"
}
Compose4: replace(body('Create_HTML_table'),'<table>','<table border="1">')
Result:
.
Thanks for your effort and time.
Sincerely
Cliff | Microsoft Community Moderator