I have a child list I use for my cascading dropdown values in my parent list form. I chose this way because the columns have duplicate values depending on your selections
I have my function setup as followed for the 3 dropdown fields (and it works great!)
The problem I can't seem to resolve is when data is submitted the child dropdown values does not populate the parent list with the dropdown selection. How can I get that to work?
Thank you!
Solved! Go to Solution.
Hi @Anonymous ,
Which type columns do you use to store the three Dropdown selected values within your Parent List? Choice type columns?
I assume that you use three individual Choice type columns to store the three child Dropdown selected values, is it true?
I have made a test on my side, and don't have the issue that you mentioned, please take a try with the following workaround:
Within the Edit form (parent list form), set the Update property of the Data card which contains the first Dropdown box to following:
{ Value: Dropdown1.Selected.Result }
set the Update property of the Data card which contains the second Dropdown box to following:
{ Value: Dropdown2.Selected.Result }
set the Update property of the Data card which contains the third Dropdown box to following:
{ Value: Dropdown3.Selected.Result }
If you use three individual Single text columns to store the three child Dropdown selected values, please take a try with the following workaround:
Within the Edit form (parent list form), set the Update property of the Data card which contains the first Dropdown box to following:
Dropdown1.Selected.Result
set the Update property of the Data card which contains the second Dropdown box to following:
Dropdown2.Selected.Result
set the Update property of the Data card which contains the third Dropdown box to following:
Value: Dropdown3.Selected.Result
Please take a try with above solution, check if the issue is solved.
Best regards,
Hi @Anonymous ,
Which type columns do you use to store the three Dropdown selected values within your Parent List? Choice type columns?
I assume that you use three individual Choice type columns to store the three child Dropdown selected values, is it true?
I have made a test on my side, and don't have the issue that you mentioned, please take a try with the following workaround:
Within the Edit form (parent list form), set the Update property of the Data card which contains the first Dropdown box to following:
{ Value: Dropdown1.Selected.Result }
set the Update property of the Data card which contains the second Dropdown box to following:
{ Value: Dropdown2.Selected.Result }
set the Update property of the Data card which contains the third Dropdown box to following:
{ Value: Dropdown3.Selected.Result }
If you use three individual Single text columns to store the three child Dropdown selected values, please take a try with the following workaround:
Within the Edit form (parent list form), set the Update property of the Data card which contains the first Dropdown box to following:
Dropdown1.Selected.Result
set the Update property of the Data card which contains the second Dropdown box to following:
Dropdown2.Selected.Result
set the Update property of the Data card which contains the third Dropdown box to following:
Value: Dropdown3.Selected.Result
Please take a try with above solution, check if the issue is solved.
Best regards,
Thank you! this worked perfectly!
User | Count |
---|---|
157 | |
93 | |
78 | |
73 | |
57 |
User | Count |
---|---|
202 | |
166 | |
98 | |
94 | |
79 |