Conditionally formatting if multiple cells are blank (no numerics throughout spreadsheet )

175,940

Solution 1

enter image description here

How about just > Format only cells that contain - in the drop down box select Blanks

Solution 2

The steps you took are not appropriate because the cell you want formatted is not the trigger cell (presumably won't normally be blank). In your case you want formatting to apply to one set of cells according to the status of various other cells. I suggest with data layout as shown in the image (and with thanks to @xQbert for a start on a suitable formula) you select ColumnA and:

HOME > Styles - Conditional Formatting, New Rule..., Use a formula to determine which cells to format and Format values where this formula is true::

=AND(LEN(E1)*LEN(F1)*LEN(G1)*LEN(H1)=0,NOT(ISBLANK(A1)))

Format..., select formatting, OK, OK.

SO22487695 example

where I have filled yellow the cells that are triggering the red fill result.

Share:
175,940
Admin
Author by

Admin

Updated on July 09, 2022

Comments

  • Admin
    Admin almost 2 years

    I have created a spreadsheet in Excel and am attempting to use Conditional Formatting to highlight a cell or row if any or all of the cells in the last four columns are blank. My columns consist of name of account, store manager, city, state, visit 1, visit 2, visit 3 and visit 4.

    When an account is visited notes are written in the "Visit" cell and if an account does not need a visit an X is put in each "Visit" column that is not needed (some accounts need one visit, some two, some all four).

    Is it possible to have the Account Name and/or Manager Name highlighted when any visits are left blank, indicating they need to set up a visit that is necessary?

    I have tried the instructions below but it didn't seem to work for the range of information I was looking for.


    1. Open the 'Conditional Formatting Rules Manager' (Conditional Formatting->Manage Rules).
    2. Click 'New Rule' and choose "Use a formula to determine which cells to format".
    3. In the "Format values where this formula is true:" box, enter the cell which you want to check if blank.
    4. Place a dollar sign in front of the letter of the cell reference to make it affect only that row, not the whole table or just the cell.
    5. Type ="" at the end of the box to check for if the cell is blank.
    6. Click "Format..." and go to the "Fill" tab to choose a colour to fill the row if true and click "OK".
    7. Click "Okay" to close the 'New Rule' dialog.
    8. Change the "Applies to" value of the rule you just created to the scope of the entire table to make the rule apply to it. (If your table has a reference name, you can enter it here)
    9. Click "Okay to close the 'Conditional Formatting Rules Manager'.
  • Betlista
    Betlista almost 7 years
    Maybe not an answer to original question, but this helped me, thanks!