Script to determine value of text box
Good day,
I am attempting to create an interactive PDF form, but I have absolutely no coding background whatsoever. That being said, what I would like to do is fairly simple.
I have set up a form with several of radio buttons with values associated. In each row, I have a text box (Text01, Text02, etc.) that displays the value selected by the corresponding radio button. At the bottom of the page, there is a text box that totals all of the text boxes and displays that number (TextTotal).
What I would like is for a separate text box (TextResult) to display a string of conditionally formatted text based on the value of TextTotal. For example
if TextTotal <= 5, then TextResult = "Green";
if TextTotal >5 but <= 10, then TextResult = "Yellow";
if TextTotal <10, then TextResult = "Red"
How, and in what field would I program this??
Thanks so much!