User started complaining this week about how checking "Continue to Part 2" quit working.
What it is scripted to do is - On User Input (checking the box), it calculates data and shows the user information and asks more questions.
I have made no changes to the form.
I looked at the script and it looks like it is right.
Will you help me out with this?
Here is the script that runs On User Input for checking "Continue to Part 2"
input.Percent_Funded = (input.Current_Monthly_Pledges / input.Total_Monthly_Support_Budget * 100).round(0);
input.Monthly_Support_Goal = ((input.Total_Monthly_Support_Budget - input.Current_Monthly_Pledges) / input.Months_Remaining).round(0);
input.Weekly_Support_Goal = ((input.Total_Monthly_Support_Budget - input.Current_Monthly_Pledges) / input.Months_Remaining / 4).round(0);
input.Weekly_Note = (((((("<font color=#0000ff><font size=4><strong>Based on the information you provided,<br /> you are now ") + input.Percent_Funded) + "% funded.<br />Your Monthly Support Goal is now $") + input.Monthly_Support_Goal) + ",<br />and your Weekly Goal is $") + input.Weekly_Support_Goal) + ".<br />How did you do this week?<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />";
show Weekly_Note;
show Calls_Made_This_Week;
show Appointments_Held;
show Number_of_New_Partners;
show New_Ongoing_Pledges;
show Continue_to_Part_3;