Saleh Ben Posted May 9, 2022 Share Posted May 9, 2022 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 More sharing options...
Kirsten Smith (she/her) Posted May 9, 2022 Share Posted May 9, 2022 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 More sharing options...
Anders Gavare Posted May 13, 2022 Share Posted May 13, 2022 [Rang client] is null Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now