Hey everyone! I’m working on a Google Sheet that’s linked to a Form. I’ve got a column with Names and several columns for Values. There’s also a list of all available Names.
I need help creating a formula that does two things:
Checks if any names from the total available list are missing in the Names column
Warns me if a name is present but has no values in its row
I’m not sure how to combine COUNTIF or other functions to make this work. Has anyone tackled something similar before? Any tips or formula suggestions would be super helpful!
Here’s a quick example of what my sheet looks like:
This checks each row and flags those without any entries.
Combine these with conditional formatting for visual alerts. You could also use VLOOKUP or INDEX/MATCH for more complex scenarios. Let me know if you need further clarification on implementing these formulas.
This will return a list of names that are in your AvailableNames list but not in your Names column.
As for empty rows, a COUNTIF function could work:
=COUNTIF(B2:D2, “”)=COLUMNS(B2:D2)
This checks if the count of empty cells in a row equals the total number of columns, indicating all values are missing.
You might want to combine these into a more complex formula or use conditional formatting to highlight the issues visually. It takes some trial and error, but once you get it right, it’s a real time-saver for data management.