当 Excel 2010 中另一个单元格具有特定数值时,更改同一行上多个单元格的背景颜色
A B C D
1 Name 2009 2010 Total
2 Sam 400 600 1000
3 John 200 400 600
4 Eric 100 300 400
我正在研究一个简单的列表(参见上面的示例),其中当 D 中的单元格值具有特定数字时,总计(D 列)和名称(A 列)中的单元格背景颜色会发生变化(在简单的交通灯系统中)值,即:
- 如果总计 >=1000,
- 则为绿色 琥珀色在 500-999 之间
- 红色 <500
我已使用 MS Excel 2010 的条件格式序列来突出显示 D 中的单元格。但是,我该如何做创建一个序列或代码,以便同一行的 A 中的相应单元格的颜色相同?例如,如果 D2 是绿色,那么我希望 A2 也为绿色?
我该怎么做?
A B C D
1 Name 2009 2010 Total
2 Sam 400 600 1000
3 John 200 400 600
4 Eric 100 300 400
I'm working on a simple list (see example above) where a cells background color changes (in a simple traffic light system) in both the Total (column D) and Name (column A) when the cell value in D has certain numeric values, that is:
- Green if total >=1000
- Amber is between 500-999
- Red <500
I've used a conditional formatting sequence using MS Excel 2010 to highlight cells in D. However, how do i create a sequence or code so that the corresponding cell in A of the same row is colored the same way? For example, if D2 is Green then I want A2 to be Green as well?
How do i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1.选择单元格 A2
2.单击条件格式>管理规则>新建规则>“使用公式确定要设置格式的单元格”
3i) 输入公式
=D2>=1000
并将格式设置为绿色填充3ii)单击“新建规则”>“使用公式确定要设置格式的单元格”并输入
=AND(D2<=999,D2>=500)
并将选择器格式设置为琥珀色填充3iii) 单击“新建规则”>“使用公式确定要设置格式的单元格”并输入
=D2< ;500
并将格式设置为红色填充4.单击“确定”
5.复制单元格 A2 并将格式粘贴到 A3:Ax
6.重复上面的步骤 1 - 5,但使用单元格 D2 而不是 A2
1.Select Cell A2
2.Click Conditional Formatting>Manage Rules>New Rule>'Use a formula to determine which cells to format'
3i)Enter formula
=D2>=1000
and set format to green fill3ii)Click New Rule>'Use a formula to determine which cells to format' and enter
=AND(D2<=999,D2>=500)
and selecter format as amber fill3iii)Click New Rule>'Use a formula to determine which cells to format' and enter
=D2<500
and set format to red fill4.Click Ok
5.Copy Cell A2 and paste formats down to A3:Ax
6.Repeat steps 1 - 5 above but use cell D2 instead of A2