As seen in the image provided below, I have a column named "DQ". I have a function called "Rerank" which updates the "Place" column, and I want it to run only if the checkbox in that specific column has been modified. How can this be done?
So, ultimately, I would assume it would be a click event check for a cell in that column to finish being edited looking something like:
if (column[7].clicked)
Rerank()
or something like:
if (column[7].finshedEditing)
Rerank()
Thank you very much for any help