Scheduled Fx Script - Not Working

Scheduled Fx Script - Not Working

Hello everyone, Its been 2 years and still feel new to Zoho Creator because it seems like I am consistently needing things done that I do not know how to exactly fix.

But anyway.  I have a form my team submits.  Within the form, there is a field for the current date.  I need the submitted form to daily be updated to ensure the current date is updated daily.  I used the following Fx Script and it is not working.  

I am not getting any errors, but when I execute and look at the submitted forums, the current dates are not updating. 

fet = Annual_Report[ID != 0];
for each  rec in fet
{
System_Curent_Date = zoho.currentdate;
}
 

What am I doing wrong?