A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
These are the steps in quick succession.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
For example: If cell in d2 is blank --> cell b2 stays white (or whatever)
But, if d2 contains text/or a date --> cell b2 changes colour (drawing attention to the reader - it should be given a certain batchnumber)
When b2 contains a number it turns back to the original format.
I want this conditional formatting to true for all the cells in column d and b, meaning that the same relationship applies for d3 and b3, d4/b4, and so on.
The aim is to more easilly detect gaps in the sheet.
Thank you in advance!
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
Answer accepted by question author
Do your regional settings use the semi-colon for the system list separator? Try this version instead.
=AND(ROW($B1)>1; OR(ISTEXT($D1); ISNUMBER($D1)); NOT(ISNUMBER($B1)))
Answer accepted by question author
Select all of column B with B1 being the active cell then create a conditional formatting rule based upon the following formula,
=AND(ROW($B1)>1, OR(ISTEXT($D1), ISNUMBER($D1)), NOT(ISNUMBER($B1)))
Click format and choose an alarming colour (red, yellow, etc) for the Fill and then OK to create the rule.
sUCCESS!
I tried again, like this:
Instead of marking the entire row, I chose just one cell, using conditional formatting > manage rules > new rule > pasted the formula that you gave me and changed the row value to fit the cell I had chosen.
The formula worked for that one cell.
Then I copied the cell to the remaining cells in the column :-)
Thank you for trying to help.
I have tried to insert this formula, but I get error every time. I can't see why.