Oracle Analytics Cloud and Server

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

NULL Filter Values

Received Response
86
Views
3
Comments

Summary

Hor do I validate, deal with, a NULL filter value?

Content

I placed in my filter box.  (FieldValue = 'R')   Yet sometimes there is no 'R' and my report blows up.    How do we deal with that?

Version

18

Capture3.JPG

Welcome!

It looks like you're new here. Sign in or register to get started.

Answers

  • As I answered in my other thread: correct the source data or use data flows to correct it by putting a placeholder value like 'N/A', 'Insufficient data' or 'Data Quality Issue' to make things visible.

    Remember - it's always the tool that SHOWS data issues which gets blamed. Not the source which delivers garbage.

  • Rank 6 - Analytics Lead

    I only want to see records that are marked 'R'  It's not that it is null it is the fact that on this day there are no rows marked 'R'  Can the tool offer a better user friendly message?

  • Rank 2 - Community Beginner

    Try removing the filter and changing the actual column expression to something like ...

    Case when (EOAWUSER_TYPE = 'R' then 'R')
    else ' ' end

    The report shouldn't blow up since it pulls all data. Only the "R"s will show. Might not be perfect but thats all I can think of.

    Good Luck!

Welcome!

It looks like you're new here. Sign in or register to get started.