So I'm trying to create a spreadsheet to keep track of multiple people and their progress as they complete tasks. On the top of the spreadsheet are toggles. I've used the conditional formatting
=RegExMatch($C13,"Not Started")
(as an example) to change to a specific color with each project status. I would like the toggles on the top to toggle the conditional formatting on the entire spreadsheet. Is this possible? What formulas would I need?
=AND(RegExMatch($C13,"Not Started"),$A$1="Toggle On")
? – Robin Gertenbach