简体   繁体   English

当isblank函数查看嵌入了公式的单元格时,如何在Excel中将Round函数与Isblank函数一起使用?

[英]How to Use round function with Isblank function in Excel when the isblank function is looking at a cell that has a formula embeded?

I am using the isblank and round fuctions at the same time but when I copy the formula down and since T5 Cell has a formula in it , an error will come up #value!. 我同时使用isblank和round函数,但是当我向下复制公式时,由于T5 Cell中有公式,因此#value!会出现错误。 Thanks! 谢谢!

=IF(ISBLANK(T5),"",ROUND(T5/12,0))

尝试:

=IFERROR(IF(ISBLANK(T5),"",ROUND(T5/12,0)),0)

= IFERROR(IF(ISBLANK(T5),“”,ROUND(T5 / 12,0)),0)

检查非空白数字,而不是检查T5中公式返回的零长度字符串。

=IF(AND(ISNUMBER(T5), LEN(T5)), ROUND(T5/12,0), "")

考虑:

=IF(T5="","",ROUND(T5/12,0))

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Excel“ISBLANK”功能具有“IF”功能 - Excel “ISBLANK” function With “IF” function Excel功能:“不是Isblank”和“或”,如果日期是 - Excel function: “Not Isblank” with “Or” and if date is 是否可以在函数结果上使用“IsBlank()”function? - Is it possible to use the "IsBlank()" function on a function's result? Excel:IF ISBLANK 函数看到 6 个附加行已填充 - Excel: IF ISBLANK Function Seeing 6 Additional Rows as Filled 为什么isblank返回的数组不能与Excel中的match函数一起使用? - why the isblank returned array cannot work with match function in excel? 多个条件If&Isblank Excel公式 - Multiple criteria If & Isblank Excel Formula 如果公式中有 isblank - If formula with isblank in it 在包含函数的单元格上使用IF / ELSE或ISBLANK函数 - Using IF / ELSE or ISBLANK function on cells that contain functions 如何在 VBA 中重新创建以下 excel 函数作为自定义函数: =IF(ISBLANK(I2), "late", IF(I2 > H2, "late", "on time")) - How to recreate the following excel function as a custom function in VBA: =IF(ISBLANK(I2), "late", IF(I2 > H2, "late", "on time")) 这些公式可以简化吗? 为什么INDIRECT函数在MATCH公式中的ISBLANK测试中似乎不起作用? - Can these formulas be simplified? Why does INDIRECT function seem to not work inside an ISBLANK test within a MATCH formula?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM