Jump to content

How can I limit my data with an expression too see only empty rows of a column


Saleh Ben

Recommended Posts

Hi everybody, i am asking your help to filter my data with the empty rows of a column with an expression for a visualisation (a chart).

 

The goal is to have an expression doing this, the columns is "Rang client" that have to be filtered to see only the empty rows of that column for the chart.

I tried with the expression :([Rang client])~= "(Empty)" and([Rang client])~= "" but it did not work.

Thanks for your help.

Link to comment
Share on other sites

Try using 'Is Null':

 

 

Is Null

 

 

Used within an If- or Case- statement, to determine whether or not an expression yields an empty value (null value).

 

Example:

If([Column] Is Null, "value was null", "value was not null")

 

If an expression contains empty values (null values), you can use the SN function to substitute the null values with the specified value.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...