Hello,
I need to delete a field within a record or update the field to be blank. I would like this to happen when an Icon is selected. I have tried Replace, Substitute and Remove and not having any luck. I may be typing the formula wrong to this.
Is there anyone who can help please?
Thank you
If the records are Ina Gallery you can insert a checkbox and whenever is checked:
Patch(Datasource,ThisItem,{Column1:" "})
If it not a Gallery, then use:
Patch( Datasource First( Filter(Datasource, ID = Textbox2.Text ) ), {ColumnToChange: "" } )
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.