Hi,
I have created a simple workflow for testing a product.
Within the row is a flag symbol column which the user selects to denote a fault. And when the fault is fixed a check box is selected at the end of the row to say it’s been completed.
The fault flags throughout the sheet are counted in a running total as is the completed check boxes.
What I would like to achieve is the fault flag symbol to be automatically cleared when the completed check box is selected by the user.
I have made some headway with the problem by creating a “dummy" flag fault column, which when selected by the user activates the "hidden" flag fault column. The hidden flag is also deselected when the completed checkbox column is ticked.
The formula I have in the hidden flag column is this
=IF([Dummy]1 = 1, IF(Completed1 = 0, 1, IF([Dummy]1 = 0, IF(Completed1 = 1, 0))))
This clears the hidden flag but obviously not the dummy flag.
I’ve have tried conditional formatting, but with no luck. Can someone guide me where I’m going wrong. I might be looking in the completely wrong direction, or trying to over complicate things.
Many thanks