Hi Michelle,
Unfortunately, the @DEFAULT action tag only kicks in the first time an instrument is loaded. @SETVALUE is a bit better in that it kicks in
every time the page is loaded but it's still no good for what you need as it only kicks in on the page load, not when users change answers on the page.
So unless, anyone can think of another way of doing it with a radio button, then a potential workaround is to change Question 3 from a radio button to a text field, then use the @CALCTEXT action tag in that text field to work out the answer based on the answers
to question 1 and 2. e.g.
@CALCTEXT(IF([question_1]='1' and [question_2]='1', 4,
X))
Where X is whatever answer you want to show if Question 1 or Question 2 are
not answered with '1'.
You could have another IF() statement instead of
X if there are more rules dictating the answers to question 3.
Best of luck,
David.