Hello !
So I have a column I wish to have a button that allows me to empty the context of a specific column.
I tried the formula - DeleteRows(thisRow.photo) *photo is the name of the column
But encountred : “Invalid arguments passed to DeleteRow [object Object]” though in the formula I does not mark any problems
DeleteRows() always takes an entire row as an argument and permanently deleted an entire row.
If you want to keep the row, but essentially erase the photo columns value, you use ModifyRows(), and set the value of your target column to “” -
Two quotation marks with no spaces inbetween represents a blank value.
1 Like
Awesome @Scott_Collier-Weir !
Thanks once again, works perfectly!
1 Like