In case anyone else encountered this problem. You have to edit your function and check the "has return value" box. Then your return will work. After this you have to use "Call Function" again and now you have a new field for saving results.
How to check if a variable value exists?
-
Help please
How to check if a variable value exists in a file as a resource?
For example:variable: A1 It's ture

variable: A1 It's false

-
var a = RMap(RESOURCE_NAME).indexOf(ELEMENT_VALUE); if(a == -1){ VAR_RESULT = false; }else{ VAR_RESULT = true; }https://community.bablosoft.com/topic/10194/sf_modul - Resource_is_element
-
@tet-vivi said in How to check if a variable value exists?:
var a = RMap(RESOURCE_NAME).indexOf(ELEMENT_VALUE);
Thank you very much.
Are there any ways by using BAS module ?
So sorry, I'm no coding skills -
@linagoode1 either use a third-party module (install it) or use the code
-
Yes, i tried it. It's great!
But I am not success.When a variable value is a string "A1",
I want to check "A1" is or not in a file.
I have set the file as a resource.when the file doesn't have "A1", the result is false,
but when the flie has "A1",the result is still false.