I'm running into a problem that I'm having trouble solving, because it uses the term "list" twice and so search engines aren't giving me good results.
I am running -list- to give me id's for particular observations. It's something like this:
This will give me a list of id's ranging from, say, 101-199.
I then want to save them as a local list. So in the case I'm doing right now, I'm manually taking the id's 105, 124, 174, and 188 and doing something like:
Is there any way to take the list directly from -list- earlier? Is there a better alternative? If someone has already answered this, I'd like to know--like I said, the search engine was giving me some lousy results, so it's very possible someone has answered this already.
I am running -list- to give me id's for particular observations. It's something like this:
Code:
list public_id if _merge==2
I then want to save them as a local list. So in the case I'm doing right now, I'm manually taking the id's 105, 124, 174, and 188 and doing something like:
Code:
local idlist "105 124 174 188"
Comment