Hi,
Thanks for replying quickly. The form is here: https://topscholarsediting.com/?cff-form=6
I only started working on the “Editing & Proofreading” dropdown. When you select “1 Week” under the Turnaround Time section, I would like the TOTAL to come up as: Enter Word Count Number x 0.04
Hope that makes sense.
“1 Week” is the title of one of the radio buttons. Is that how it works? I would insert the name of the radio button after “fieldname3 ==” ???
Ok. I think I figured it out and I came up with this code:
(function(){
if(fieldname3 == 1 Week > 1001) return 0.04*fieldname7;
if(fieldname3 == 1 Week < 1000 && >2001) return 0.05*fieldname7;
if(fieldname3 == 1 Week < 2000) return 0.06*fieldname7;
})();
I tried entering it in the “Set Equation” section of the Calculate Field control. But the code doesnt work. Can you tell me where I went wrong?