I am trying to use the UpdateIf function to update a column that is normally set by the selecting of a value from a dropdown.
Here is what I am trying:
UpdateIf('Report Request List', ID = TemplateGalleryList1.Selected.ID, {Status = "Signed Off"})
I get the error: The type Text is invalid for column 'Status'; Record expected.

What does this mean please?
I suspect it's due to the type of column, because when I try the following with an integer column, it does not error:
UpdateIf('Report Request List', ID = TemplateGalleryList1.Selected.ID, {StatusCode = 5})
Any help would be most gratefully received.