Hi Armandine,
Now you could use the @IF() action tag to achieve what you've asked for.
e.g.
In the action tags/annotations section of fields 2, 3, and 4, replace the @DEFAULT tag with this:
Field 2
@IF(([field_1]=1 or [field_1]=2), @DEFAULT=1, @IF([field_1]=3, @DEFAULT=3))
Field 3
@IF(([field_1]=1), @DEFAULT=1, @IF(([field_1]=2 or [field_1]=3), @DEFAULT=3))
Field 4
@IF(([field_1]=1), @DEFAULT=1, @IF(([field_1]=2 or [field_1]=3), @DEFAULT=3))
BUT, the problem with that is ... this will only get executed once
when the page first loads.
You could use @SETVALUE instead of @DEFAULT so it executed every time the page loaded, but if the user changes the answer to [field_1] again
after page load, it doesn't execute, so it's not much use.
The solution for this escapes me right now, but maybe someone else here can think of a more dynamic way of solving that last problem?
Cheers,
David.