Share Bài 195: Cách sử dụng hàm IsError trong Excel

voreggie

New member
** Cách sử dụng hàm isError trong excel **

Hàm Iserror của Excel kiểm tra xem giá trị là lỗi và trả về giá trị boolean của đúng hoặc sai.Hàm này có thể được sử dụng để khắc phục sự cố các công thức, xác định các ô có chứa lỗi và các ô định dạng có điều kiện dựa trên trạng thái lỗi của chúng.

**Ví dụ**

Giả sử bạn có một công thức trong ô A1 phân chia giá trị trong ô A2 cho giá trị trong ô A3.Nếu ô A3 chứa giá trị 0, công thức sẽ trả về lỗi #div/0 !.Bạn có thể sử dụng chức năng Iserror để kiểm tra xem ô A1 có chứa lỗi hay không, sau đó sử dụng câu lệnh IF để hiển thị giá trị khác nếu có lỗi.

`` `
= If (Iserror (A1), "Lỗi", A1)
`` `

Công thức này sẽ trả về văn bản "lỗi" nếu ô A1 chứa lỗi và giá trị trong ô A1 nếu không có lỗi.

**Một vi dụ khac**

Bạn cũng có thể sử dụng hàm ISError để định dạng các ô định dạng có điều kiện dựa trên trạng thái lỗi của chúng.Ví dụ: bạn có thể sử dụng công thức sau để định dạng các ô có chứa lỗi màu đỏ:

`` `
= If (isError (A1), "màu nền: màu đỏ", "")
`` `

Công thức này sẽ áp dụng màu nền màu đỏ cho bất kỳ ô nào chứa lỗi.

** Sử dụng Iserror với Countif **

Bạn cũng có thể sử dụng chức năng ISERROR với chức năng Countif để đếm số lượng ô trong một phạm vi có chứa lỗi.Ví dụ: công thức sau sẽ đếm số lượng ô trong phạm vi A1: A10 có chứa lỗi:

`` `
= Countif (A1: A10, Iserror ())
`` `

Công thức này sẽ trả về một số đại diện cho số lượng ô trong phạm vi có chứa lỗi.

**Phần kết luận**

Hàm isError là một công cụ mạnh mẽ có thể được sử dụng để khắc phục sự cố các công thức, xác định các ô có chứa lỗi và các ô định dạng có điều kiện dựa trên trạng thái lỗi của chúng.Bằng cách hiểu cách sử dụng hàm isError, bạn có thể cải thiện độ chính xác và hiệu quả của bảng tính Excel của bạn.

**Những bài viết liên quan**

* [Cách sử dụng chức năng Countif trong Excel] (https://www.tricksmmo.com/how-to-use-the-ountif-function-in-excel/)
* [Cách sử dụng chức năng iferror trong Excel] (https://www.tricksmmo.com/how-to-use-the-te-iferror-function-in-excel/)
* [Cách sử dụng chức năng Vlookup trong Excel] (https://www.tricksmmo.com/how-to-use-the-vookup-function-in-excel/)

** hashtags **

#Excel #IsError #ExcelFormulas #ExCeltips #ExCelfunesions
=======================================
**How to Use the Iserror Function in Excel**

Excel's Iserror function checks if a value is an error and returns a Boolean value of either True or False. This function can be used to troubleshoot formulas, identify cells that contain errors, and conditionally format cells based on their error status.

**Example**

Suppose you have a formula in cell A1 that divides the value in cell A2 by the value in cell A3. If cell A3 contains the value 0, the formula will return the error #div/0!. You can use the Iserror function to check if cell A1 contains an error, and then use an IF statement to display a different value if there is an error.

```
=IF(ISERROR(A1), "Error", A1)
```

This formula will return the text "Error" if cell A1 contains an error, and the value in cell A1 if there is no error.

**Another Example**

You can also use the Iserror function to conditionally format cells based on their error status. For example, you could use the following formula to format cells that contain errors in red:

```
=IF(ISERROR(A1), "background-color:red", "")
```

This formula will apply a red background color to any cell that contains an error.

**Using Iserror with Countif**

You can also use the Iserror function with the Countif function to count the number of cells in a range that contain errors. For example, the following formula will count the number of cells in the range A1:A10 that contain errors:

```
=COUNTIF(A1:A10, ISERROR())
```

This formula will return a number that represents the number of cells in the range that contain errors.

**Conclusion**

The Iserror function is a powerful tool that can be used to troubleshoot formulas, identify cells that contain errors, and conditionally format cells based on their error status. By understanding how to use the Iserror function, you can improve the accuracy and efficiency of your Excel spreadsheets.

**Related Articles**

* [How to Use the Countif Function in Excel](https://www.tricksmmo.com/how-to-use-the-countif-function-in-excel/)
* [How to Use the Iferror Function in Excel](https://www.tricksmmo.com/how-to-use-the-iferror-function-in-excel/)
* [How to Use the Vlookup Function in Excel](https://www.tricksmmo.com/how-to-use-the-vlookup-function-in-excel/)

**Hashtags**

#Excel #IsError #ExcelFormulas #ExCeltips #excelfunctions
 
Join Telegram ToolsKiemTrieuDoGroup
Back
Top