I am having trouble patching text to a column in a sharepoint list. My list is called 'Program Planning Test'. The column I want to patch to is a single line of text column called 'JE A1 Season.' The text field I want to patch is in a custom card (with othet text input fields). The control is called txtJEA1 and the Default property is set to LookUp('Program Planning Test', ID = varRecord.ID, 'JE A1 Season') (It is showing text that is already in the column).
I am trying to patch from a Submit button using the formula below (I am using the variable varRecord to show a record across forms).
Patch( 'Program Planning Test', ID = varRecord.ID, 'JE A1 Season', { 'JE A1 Season': txtJEA1.Text })
Can anyone advise me on how to update the formula (or anything else) so the text entered in txtJEA1 populates the column JE A1 Season when I submit the form?
Many thanks!