Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/multithreading/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Excel 组合IFERROR和LEFT公式_Excel_If Statement_Excel Formula_Left Join - Fatal编程技术网

Excel 组合IFERROR和LEFT公式

Excel 组合IFERROR和LEFT公式,excel,if-statement,excel-formula,left-join,Excel,If Statement,Excel Formula,Left Join,我有一个这样的公式 =IFERROR(B83,"OPEN") 因此,如果某个单元格有错误,它会将其更改为打开,但如果没有,它会返回该单元格中的值 我试图使单元格也短文本,返回到7个字符 我提出了这个公式: IFERROR(B83,"OPEN"),AND(LEFT(B83,7)) 但是,它不起作用,而是返回“NA” 感谢您的帮助。试试看 IFERROR(LEFT(B83,7),"OPEN") 您需要将所需的结果作为IFERROR的第一个参数

我有一个这样的公式

=IFERROR(B83,"OPEN")
因此,如果某个单元格有错误,它会将其更改为打开,但如果没有,它会返回该单元格中的值

我试图使单元格也短文本,返回到7个字符

我提出了这个公式:

IFERROR(B83,"OPEN"),AND(LEFT(B83,7))
但是,它不起作用,而是返回“NA”

感谢您的帮助。

试试看

IFERROR(LEFT(B83,7),"OPEN")
您需要将所需的结果作为IFERROR的第一个参数