mbc66
March 11, 2019, 1:47am
12
@bernice , Take a look at this thread where I set up a way to copy a repeater with user-entered text from one page to the next, using a method to parse one global variable.
OK, then this can be relatively straightforward. I’ll assume the list can vary in length and contains just a single word (but same approach would work with multiple words or numbers per row.) We can concatenate your repeater rows to a global variable, like OnLoadVariable, separating rows with a char that could not appear in the content, say like a comma. So a repeater like this…
Ant
Bird
Cat
Dog
…would result in a string of “,Ant,Bird,Cat,Dog” which is a valid value for OnLoadVariable. Every t…