I have a custom list in SharePoint with a text field called Group. In the integrated SharePoint list i want the users to have a dropdown instead of a text field on the datacard(Mainly because i want to reduce the number of lookup columns in my list).
the items Property of the dropdown is ["","A","B","C"]
default property of the datacard is "thisItem.Group"
default property of the Dropdown control is just an empty string
i only have one form
the issue is that when i click on new form on SharePoint i always get the last value that was chosen on the dropdown instead of an empty string
Not sure what i have done wrong any ideas?
Solved! Go to Solution.
Hi @Gottijay2000 ,
You want a new record not to show any input on a DropDown? - I will call your form YourForm - replace this with the name
In the Default property of your DropDown
If(
YourForm.Mode <> FormMode.New,
ThisItem.Group
)
This should not default anything into the control on new records.
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 @Gottijay2000 ,
You want a new record not to show any input on a DropDown? - I will call your form YourForm - replace this with the name
In the Default property of your DropDown
If(
YourForm.Mode <> FormMode.New,
ThisItem.Group
)
This should not default anything into the control on new records.
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.
User | Count |
---|---|
250 | |
102 | |
94 | |
47 | |
37 |