Hi all,
Why is this not working?
y := @Prompt([OkCancelEdit];“Reference Number”; “Which reference # do you want to replace (1, 2…etc).”;“”);
strInref := @Implode(INREF;“,”);
@prompt([ok]; “Concatenated INREF”; strInref);
wrongvalue := @Word(strInref;“,”;y);
@prompt([ok]; “Wrong Value”; wrongvalue);
For y, I have tried different values 1, 2, 3.
THe first prompt for strInref works correctly. It returns 3 values in my test which is correct with “,” in between as the separator.
INREF is a text field with “Allow Multiple Values” selected.
The second prompt for @word however doesn’t retrun anything. Even the prompt box doesn’t display, let alone the value for @word.
Any help would be greatly appreciated.
Thank you,
Gowri