Ive suceeded in making a listpicker and populated it from an Index number..... but how do I get any other arbitrary value and WITHOUT adding it to the listpicker, assign it to a variable or to serve as text for a label???
Yes.... I probably should be "programming" but - AGAIN - any help appreciated.
I have a list picker and its working fine. But that's NOT the issue. Without data going into the ListPicker, how can I extract just one field for use in a variable as text?
To pick a random item from a list, use the pick a random item block from the list drawer
It would really help if you provided a screenshot of your relevant blocks, so we can see what you are trying to do, and where the problem may be.
To get an image of your blocks, right click in the Blocks Editor and select "Download Blocks as Image". You might want to use an image editor to crop etc. if required. Then post it here in the community.
if I understand you..... what you are suggesting will put the data associated with the index into the List Picker. Which is exactly what I don't want. I need it outside of the List Picker.
you can do what you want with the data you are getting back
also you can send another select statement to the database to select an item of your choice
you also can define a where clause, for example
select myValue FROM myTable WHERE someCondition = 1 to display it in the listpicker
and another select query
select myValue FROM myTAble WHERE id = 42 to display it outside of the listpicker, it just depends on your table, your columns and your requirements...