Hi,
Thought this would be simple one, but i cant quite get it to work,
I have an edit form that i want the data to be populated from my gallery (Gallery1) for a specific record when this record is chosen in a dropdown box.
the Dropdown box is called "DDEditDevelopment" and this pulls data from the gallery (Gallery1) using the syntax below to show all the current developments we have.
Sort(Gallery1.AllItems,Development_Name,Ascending)
On my form (Which is on a seperate screen) i want the data to be populated where this Development is selected.
The Datasource of the form is my Developments Sharepoint list,
The item fx i'm using the following but getting re squiggly lines - Can anyone help?
Filter(Gallery1.AllItems,Development_Name=DDEditDevelopment.Selected.Development_Name)
Solved! Go to Solution.
Hi @d3ell
Could you please change your formula expression as this?
LookUp(Gallery1.AllItems,Development_Name=DDEditDevelopment.Selected.Development_Name)
Best Regards.
Yumia
Hi @d3ell ,
I did not get your point of having a dropdown, when all the data is already available in Gallery1.
OnSelect of a record in gallery, you can write below code to populate your form
EditForm(Form1); Navigate(screen2, Fade)
Use SP ID field in Filter instead of Name field.
Thanks.
Hi @d3ell
Could you please change your formula expression as this?
LookUp(Gallery1.AllItems,Development_Name=DDEditDevelopment.Selected.Development_Name)
Best Regards.
Yumia
Yes! Lookup! - wish id thought of that! - Thanks very much for your input! Much appreciated!