Conditional formatting not working
First off, you're sitting at a computer. Take screenshots, not pictures of your monitor. Between the blur and the Moiré pattern, it's unnecessarily hard to figure out what I'm looking at.
Second, why are you recalculating the values here when you already have cells that have these values? I mean here, the top formula is just the same as the value of N9 and the bottom one is the same as the value of N7. Just refer to the those values directly instead of typing the same calculactions into every conditional format
Lastly, you need to use absolute cell references. By default, if you refer to a cell by its address, all other cells in the range that format applies to use that as a relative starting point. So let's say if you want to format the cells from A1:A5. We want to color them based on a value in B1, but we only use a relative cell reference. So cell A1 looks at the content of B1 and formats itself accordingly. A2 doesn't look at B1, it looks at B2, because by default the cell reference is relative to the cell you want to format. To Sheets, it looks like you gave it the following order for A1: "Look at the cell next to you on the right and check what value it has." So when it's A2's turn, it looks at B2, A3 looks at B3, etc. because those are the cells right next to them.
To use absolute cell references, you need to type in the cell name like this $B$1. The $-sign in front of each element says that you want to make sure it only looks at what you specify. So for example if you use $B1, it means that it only looks at column B, but it can be on any row on that column. B$1 means that it only looks at row 1, but it can be in any column on that row. $B$1 means that only that single cell is used for the calculation, regardless of what the target range is. So in your case, it should look something like this:
As you can see, I'm using the values calculated in column N directly in the calculation, not doing the same calculation again and again for each format.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now