Complete the code to apply a color scale based on the Sales column.
ColorScale = IF([Sales] [1] 1000, "Green", "Red")
We use > to check if Sales is greater than 1000 to apply green color.
Complete the formula to highlight rows where Profit is less than 0.
Highlight = IF([Profit] [1] 0, "Red", "NoColor")
We use < to find negative profits and highlight them red.
Fix the error in the formula to highlight high sales over 5000.
HighSales = IF([Sales] [1] 5000, "Blue", "NoColor")
Use > to check if Sales is greater than 5000 for blue highlight.
Fill both blanks to create a rule that highlights sales between 1000 and 3000.
MidSales = IF([Sales] [1] 1000 && [Sales] [2] 3000, "Yellow", "NoColor")
Use >= 1000 and <= 3000 to include sales in the range.
Fill all three blanks to create a conditional formatting rule that highlights products with Profit over 500, Sales under 2000, and Region equals "East".
FormatRule = IF([Profit] [1] 500 && [Sales] [2] 2000 && [Region] [3] "East", "Highlight", "NoHighlight")
Use > for Profit over 500, < for Sales under 2000, and = to compare Region to "East".