I have two columns of checkboxes in a Google Sheets document (column A
and column B
, for example sake), and I want to be able to add a function that will look down column A
, and move any checked boxes into column B
, while ignoring any rows where the cell in column A
is blank. I intend to add this function into a drop down menu in in my spreadsheet.
So, as an illustration:
Sheet before running this function:
Column A | Column B
=====================
✓ | ☐
✓ | ☐
☐ | ☐
☐ | ✓
---
Sheet after running this function:
Column A | Column B
=====================
☐ | ✓
☐ | ✓
☐ | ☐
☐ | ✓
I've figured out how to check or uncheck whole ranges, so I can clear column A
easy enough, but I can't figure out what to do to change those specific cells in column B
where column A
is checked first.