Hello,
I have a form that is based on one sharepoint list that users can submit requests too. It has several dropdowns that are populated by choices from other sharepoint lists along with filtering used based on other dropdowns. Though, any of my dropdowns that use choices from a separate sharepoint list won't write to the final sharepoint list. Any help would be greatly appreciated. The only reason I'm forced into using the edit form control is because users need to be able to attach excel spreadsheets to the request.
Thanks,
Taylor L
Solved! Go to Solution.
Hi @ctlockhart3 ,
Change the Update to
{Value:client_cardvalue.Selected.Result}
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @ctlockhart3 ,
If you have changed the Items of the drop-down, you need to change the Update properties of the Data Card it is contained in.
If you supply the Items property of the control and the type of field you are writing to (Text/Choice), I can tell you the new code you will have to use.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @WarrenBelz
The Items property code is:
Distinct(prod_tbl_wTitle, Client)
where prod_tbl_wTitle is the separate SharePoint List. The type of column this value is being written to is Choice. The current Update property code of the DataCard is,
client_cardvalue.Selected
Thanks for your help!
Hi @ctlockhart3 ,
Change the Update to
{Value:client_cardvalue.Selected.Result}
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.