I am trying to update the value with that of the chosen radio button. But I am getting the wrong value. I have attached the output. Can someone please tell me what's wrong?
Thanks!
Hi @dipika1 , try this.
Thanks.
Hi @dipika1 , I got it why are you getting this issue in your formula tool you have hardcoded the field with this value
In the first the case where you have applied the drop down interface the value of "val" is being replaced with 1
therefore the new value for the field becomes
replacing the val of the direction with 1e that is why you are getting this weird output. try replcaing the val with some other string and this may work for you as I have changed mine to va1e with a 1.
New value for column Data:
Hi @dipika1,
This issue comes from the expression used in the formula tool. In order to check which radio button was selected, the condition should check the value of the variable against the strings "True" or "False".
IF [#1] = "True" THEN Replace([Destination], "vale", "LEFT") ELSEIF [#2] = "True" THEN Replace([Destination], "vale", "RIGHT") ELSE Replace([Destination], "vale", "BOTH") ENDIF
Please find attached a minimal working example showing how to configure the formula tool to correctly interpret the selection from the interface tools.
Hi @grazitti_sapna
can you please tell me what did you change in your workflow. Everything looks similar, I can't figure it out.
Thanks