However, this syntax now erases/empties the value of Implantaat13.
Your syntax is currently this (always better to post the exact syntax than a screenshot, as we can work with it):
Code:
if(FIP1_13=="A2", Implantaat13="", "")
So what does your syntax do?
1. it checks if FIP1_13 iguals A2.
2. if it does igual A2 you change Implantaat13 to empty.
3. the last part is the tricky one. To check what happens it would be great to have small sample survey.
So if I understand your issue correctly, Implantaat13 is ALWAYS set to empty? Because this wasn't clear from your request.
What happens when you put for the "else" part something like that: "Implantaat13=Implantaat13"?
Code:
if(FIP1_13=="A2", Implantaat13="", Implantaat13=Implantaat13)
In my opinion, your syntax should work and not result in an empty Implantaat13 if FIP1_13 is NOT A2. But your version is ancient and not supported anymore. I couldn't even test if this is a bug because I don't have such an old installatin anymore. This version hasn't received bug fixes, security patches or updates for many, many years.