View Single Post
Old 03-27-2021, 10:00 PM   #2
capink
Wizard
capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.capink ought to be getting tired of karma fortunes by now.
 
Posts: 1,200
Karma: 1995558
Join Date: Aug 2015
Device: Kindle
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.
capink is offline   Reply With Quote