How to check whether cell has any error?

Hi,

If i have some errors in the worksheet, how to find that?

Thanks

Hi,

Well, I think you may try to use:
Cell.IsErrorValue boolean attribute if it has some error value or not.

Also, you may try:
if (cell.Type == CellValueType.IsError)
{
//Do you task


}

Thank you.