Code:
program:
d1 = raw_field('#fanficupdated');
d2 = format_date(today(),'iso');
if
and(
field('#fanficstatus')=='In-Progress',
days_between(d1, d2)># 730,
)
then
"Abandoned"
else
field('#fanficstatus')
fi
You are missing some semicolons. Also you have an extra ')' after the 'In-Progress'. And format_date() is missing an argument.