我在Google电子表格中获得了池匹配的分数,其中A1值介于0到9之间。如果:
a1 = 0-3 a2=0
a1 = 4 a2=1
a1 = 5-7 a2=3
a1 = 8 a2=4
a1 = 9 a2=5我试过:
=if(OR(a1="4",b1="1",=if(OR(a1="5",b1="3",=if(OR(a1="6",b1="3",=if(OR(a1="7",b1="3",=if(OR(a1="8",b1="4",=if(OR(a1="9",b1="5","0")))))) 但却产生了一个错误。
发布于 2015-03-10 19:01:49
请尝试:
=if(A1>8,5,if(A1=8,4,if(A1>4,3,if(A1=4,1,0))))或者,使用不精确匹配的小查找表和VLOOKUP:

https://stackoverflow.com/questions/28971265
复制相似问题