Hello guys, I use an operation "Update a row into a table".
For example I have column "Error", "Finding details":

So in these columns once I have information, and once no ( in case when these errors were solved). The problem is if I have information there (for example in column error: SOX) and after user update information to null values (delete this erorr, because it was solved), old information in these columns isn't deleted ( so I still have error SOX in cell).
I was trying to solve it with If() statement:
if(equals(items('Apply_to_each_row_where_status_==_"Passed"')?['Error'], null), null,items('Apply_to_each_row_where_status_==_"Passed"')?['Error'])
So if value in my column is null, then return null, else return value from this column.
But it doesnt help.