An issue has occurred during processing. We are unable to complete the request at this time - 'undef

An issue has occurred during processing. We are unable to complete the request at this time - 'undefined'

I was trying to filter the null values in my dataset by choosing column not in null, this gives me the above error and disappears the chart.

Best Answer

  • ArborRose
    ArborRose Coach
    edited October 31 Answer ✓

    This usually points to a filtering logic or problem with the data. Verify the column does not have any unexpected data types or values. (Check the data visually to see if you see any mixed data types.) Make sure to filter out null values or create a beast mode such as CASE WHEN YourColumn IS NOT NULL THEN YourColumn END.

    ** Was this post helpful? Click Agree or Like below. **
    ** Did this solve your problem? Accept it as a solution! **

Answers

  • ArborRose
    ArborRose Coach
    edited October 31 Answer ✓

    This usually points to a filtering logic or problem with the data. Verify the column does not have any unexpected data types or values. (Check the data visually to see if you see any mixed data types.) Make sure to filter out null values or create a beast mode such as CASE WHEN YourColumn IS NOT NULL THEN YourColumn END.

    ** Was this post helpful? Click Agree or Like below. **
    ** Did this solve your problem? Accept it as a solution! **

  • Arthi Annadi
    Arthi Annadi Member
    edited October 31

    @ArborRose Thank you!