我这里有原始数据。
一个 | 乙 | 碳 | 德 | 埃 | F |
---|---|---|---|---|---|
姓名 | 分数 | 复杂 | 积分 | 总分 | 总计(无积分) |
汤姆 | 5 | 3 | 0.25 | 105.00% | 100.00% |
布伦达 | 5 | 4 | 0.5 | 110.00% | 100.00% |
标记 | 5 | #价值! | 100.00% |
大号 | 米 |
---|---|
复杂 | 积分 |
5 | 1 |
4 | 0.5 |
3 | 0.25 |
2 | 0.15 |
1 | 0.05 |
Column B = Score
- 来自用户的动态
Column C = Complexity (from users) and Column D = Points
有固定表格。在下图中,用户输入空白/无复杂性。
Column D = Points
Formula:
=IFERROR(VLOOKUP(C2,L1:M6,2,FALSE),"-")
Column E: Total with Points is based on sum of Score (B) and Points (D) divided by 5 (highest complexity of table).
该列的格式为百分比。
Formula:
=(B2+D2)/5
Column F: Total without Points is based on Score (B) divided by 5 (highest complexity).
该列的格式为百分比。
Formula:
=B2/5
上述所有公式均应用于各个列。现在,由于应用于 F 列的公式,我得到了单元格 F4 的 100.00%。请参见图 1。
如何为此列设置公式,如果其左侧单元格有错误值,它也会显示错误值,但仍会为使用 (=B2/5) 的所有其他单元格提供结果。
期望:
我很感谢你的帮助。
使用
IF()
函数ISERROR()
。尝试-如果您需要错误值作为结果,那么可以尝试-