I think ultimately I need a formula but will start to see if conditional formatting will work. We have a sheet where if a condition in a cell is true, then we want cells in that row to be shaded out. So if the Doc Type = Form, we want the 3 different quiz cells to be shaded grey and the rest of the cells to be left blank. I did not see a way to do this on individual cells in the row so then I turned to a formula. The formula is pretty simple to start:
=IF([Doc Type]@row = "Form", "N/A", 1)
So if the doc type is "form" then return an N/A to the cell, if not, return a checkmark.
But then I realized that there are other doc types and for those other doc types, in the cells that are text only (let's use "Quiz Name" as the example), it's leaving a 1 when what I would like is to leave the cell blank. I know this needs to be a nested IF statement or perhaps use an AND/OR within it but my brain is just not getting me where I need to be to do something larger than a simple IF statement.
Cam someone help?