Hi @Courtney_B - is this what you are after?
The formula for this is:
IF(
{Completed},
'Completed',
IF(
DATETIME_FORMAT(Date, 'WW') = DATETIME_FORMAT(TODAY(), 'WW'),
DATETIME_FORMAT(Date, 'MM/DD/YYYY'),
IF(
DATETIME_FORMAT(Date, 'WW') = DATETIME_FORMAT(TODAY(), 'WW') + 1,
'Next Week',
'Something else'
)
)
)
I’ve added in a ‘Something else’ option as I think the set of possibilities you are after isn’t exhaustive, e.g. a task that is due the week after next or a task in the past that isn’t completed. If you don’t want this you can just change it or blank it out.
JB