Forum Discussion

eli-k's avatar
eli-k
Frequent Visitor
4 years ago
Solved

Mass error handling

Hi all,  I have a query with many errors in a specific column, resulting from different kinds of problems. I would like to get a list of these problems in order to deal with each one specifically. ...
  • Vijay_A_Verma's avatar
    4 years ago

    What I would suggest is following -

    1. Let's say the column which is having errors is called Data.

    2. In a custom column, put following

    =try [Data]

    3. Now, it will create a column having records

    4. Expand this column - This will create 2 columns - HasError and Error

    HasError - True / False - You can filter on True to focus only on Error rows

    Error - Will contain a record

    5. Now, expand this Error record which will give all required information