对于给定的数据集,说:
a b
6,424,194 658,380
10,297,799 11,176,812
503,857 293,825
10,674,361 328,429
3,329,746 3,060,234
8,851,635 15,009,888
我试图以两种方式有条件地格式化b:
每行1)if a-b<0 then color scale from minimum value in red to 0 in white
。
2)if a-b>=0 then color scale from 0 in white to maximum value in green
。
我分别发现可以根据最小值(红色)到0或0最大值(绿色)进行色标格式化,但不能同时进行。另外,我可以根据条件设置条件格式(例如a-b> 0),但是随后我可以实现一个色阶,只能使用一种颜色。
无论如何做我想达到的目标?
这是尝试自己手动添加颜色以显示所需的内容