Hi Robert,
Why don't you create a drop list
and a lookup.
Use a condition to show them mutually exclusive, based on a function which counts the number of entries which are to appear in the list.
E.g.
- countMyDroplist() = 1 for the droplist
- countMyDroplist() = 0 for the lookup
The function should consist of something like:
if count(droplistfile) <= 10 ! **or some other counting mechnism
return(1)
else
return(0)
end
**
When you use a loop to count the number of valid entries for the list, you can stop counting as soon as the threshold is exceeded.
Kind regards
Rene