I am trying to have a column button update the status column from "open" to "in progress". I am doing this using a gallary but I keep getting an error "The type of this argument 'field_4' does not match the expected type 'Text'. Found type 'Record'
I do not understand why it is saying "field_4" as the column is labeled "status"
My listname is 'ReinvestMaster', Gallary is 'Gallery3'
The code im using for the button is this:
Patch(ReinvestMaster,ThisItem,{Status:{Value:"In Progress"}})
Solved! Go to Solution.
Hi @mcalvan
I don't know what your data construct looks like, but Status: appears to be a text column and you're trying to put a record in there.... Please consider this as an alternative?
Patch(ReinvestMaster,ThisItem,{Status:"In Progress"})
Kind regards,
RT
Hi @mcalvan
I don't know what your data construct looks like, but Status: appears to be a text column and you're trying to put a record in there.... Please consider this as an alternative?
Patch(ReinvestMaster,ThisItem,{Status:"In Progress"})
Kind regards,
RT
Try out below
Patch(ReinvestMaster,ThisItem,{Status:"In Progress"})
thank you this worked !
User | Count |
---|---|
260 | |
110 | |
89 | |
53 | |
44 |