您能否根据单元格中的内容突出显示一行。具体来说,我想把#'s 说成 A3-A15,让 A16 给我单元格的总数。如果总数在 18000 和 19999 之间,如果单元格 A16 中的数量超过 20000,我希望该行突出显示黄色,我希望该行突出显示红色。
问问题
232 次
1 回答
1
You can use a combination of the SUM
formula and conditional formatting to achieve that.
In cell A16, you can put =SUM(A3:A15)
From there, you can select cell A16, and (depending on your version) go to Format > Conditional Formatting, and enter the following formulas:
- Cell Value Is - Between - 18000 - 19999 -> Format -> Patterns -> Yellow
- Cell Value Is - Greater Than Or Equal To - 20000 -> Format -> Patterns -> Red
于 2012-08-15T19:12:16.407 回答