cancel
Showing results for 
Search instead for 
Did you mean: 

null values

steverdan
Participant
0 Kudos

How can I pull data that is not null values?

Accepted Solutions (1)

Accepted Solutions (1)

abhilash_kumar
Active Contributor
0 Kudos

Hi Steve,

If you're reporting directly against Tables/Views, you can go to the Report Menu > Selection Formulas > Record and use this code:

(Not(IsNull({database_field}))

-Abhilash

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello Steve,

In addition to what Abhilash suggested I would recommend to use

(Not(IsNull({database_field})) or {database_field}<>""

In Report record Selection.

Regards

Niraj