Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Comparison with value with a different string

=count({$<ANO_ADMISSÃO={"*"},MES_ADMISSÃO={"*"}, RA_SITFOLH={"<>D"}>}  RA_MAT)

'D' in the expression is a String and I must be have values different  the ‘D’ on RA_SITFOLH

1 Solution

Accepted Solutions
swuehl
MVP
MVP

You should be able to use either

=count({$<ANO_ADMISSÃO={"*"},MES_ADMISSÃO={"*"}, RA_SITFOLH={"=RA_SITFOLH<>'D' "}>}  RA_MAT)

or


=count({$<ANO_ADMISSÃO={"*"},MES_ADMISSÃO={"*"}, RA_SITFOLH -={'D'}>}  RA_MAT)

View solution in original post

1 Reply
swuehl
MVP
MVP

You should be able to use either

=count({$<ANO_ADMISSÃO={"*"},MES_ADMISSÃO={"*"}, RA_SITFOLH={"=RA_SITFOLH<>'D' "}>}  RA_MAT)

or


=count({$<ANO_ADMISSÃO={"*"},MES_ADMISSÃO={"*"}, RA_SITFOLH -={'D'}>}  RA_MAT)