I currently have the follwoing on a dropdown.
Patch('Quality Production Approval Record',Defaults('Quality Production Approval Record'),{'Box 1':Dropdown5.SelectedText.Value})
This creates a new record, but I would like it to change the value on the Item that is referenced in a Textinput field.
So you type your Job number in, and the dropdown selection is added to that Items Column.
Hi @jamescosten ,
For this to work, you need to reference the item you wish to edit in the second argument of the Patch function with, for instance, a LookUp function:
Patch(
'Quality Production Approval Record',
LookUp(
'Quality Production Approval Record',
'Job Number' = TextInput.Text
),
{'Box 1':Dropdown5.SelectedText.Value}
)
WarrenBelz
146,660
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
66,004
Most Valuable Professional