Hi Community,
basically I have list called PDItemlist. it has 2 Columns are FilmNumber (Single Text) and CylinderNumber (Single Text).
so I want to achieve, when I input FilmNumber (Text Input), the Clindernumber (Dropdown) will auto populated record from PDItemlist.
I have tried to input this code to dropdown items property but not work.
Any advise?
Thanks.
am4ree
Solved! Go to Solution.
Hi @Am4ree ,
Cause lookup can only return the first record that meets the criteria. In order to get multiple records, please use "Filter" instead of "LookUp" .
Best Regards,
Bof
Hi,
you haven’t mentioned which column to display on the second dropdown.
LookUp(PDItemlist, baancylindernumber =txtFilmnumber.text, cylindernumber)
_____________________________________________________________________________________
Please give a thumbs up if I resolved your issue! Please click Accept as Solution to close the topic!
Sorry I haven’t noticed that first check was incorrect in your code. This should work:
LookUp(PDItemlist, txtFilmnumber.text = FilmNumber, cylindernumber)
_____________________________________________________________________________________
Please give a thumbs up if I resolved your issue! Please click Accept as Solution to close the topic!
Finally I can auto populated the dropdown but there is still something I need to achieve which is I only seen 1 record at the moment and should be 2 record based on filmnumber I have inserted.
below is sample
I found 2 record based on FilmNumber I had inserted but in the dropdown only show 1 record
Hi @Am4ree ,
Cause lookup can only return the first record that meets the criteria. In order to get multiple records, please use "Filter" instead of "LookUp" .
Best Regards,
Bof