I’m working on a spreadsheet that tracks contact dates and I’m having trouble with conditional formatting when I move it from Excel to Google Sheets.
Here’s what I set up: I have a date tracking system that changes cell colors based on how old the contact dates are. The formatting rules I created are:
- Text “X” - Makes cells black (for removal)
- Text “OL” - Makes cells blue (for on-list status)
- Formula: AND(C6<=TODAY()-30, C6>TODAY()-45) - Makes cells yellow
- Formula: C6<=TODAY()-45 - Makes cells red
- Formula: C6>TODAY()-30 - Makes cells green
The issue happens with empty cells. In Excel they show up as blank like they should, but when I upload the file to Google Sheets, all the empty cells turn red instead of staying blank.
I tried using ISBLANK(C6) to format empty cells with no fill, but it doesn’t work because the cells contain formulas even though they don’t display any text.
Does anyone know how to make cells that have formulas but no visible content appear blank in Google Sheets? The red formatting is only supposed to apply to actual old dates, not empty cells.