Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Expression - <> as "Empty"

Hey

I have a problem with empty cells. I would like to plot this expression:

count(if(Testserie=1 and R_Z1V1<>'' ,L_Z1V1))

The thing is that I don't want to count the lines without a value... I tried with <>' ' but it doesnt work.

Thank you for your help!!!

Eduardo

1 Solution

Accepted Solutions
Gysbert_Wassenaar

try:

count(if(Testserie=1 and len(trim(R_Z1V1))>0 ,L_Z1V1))


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

try:

count(if(Testserie=1 and len(trim(R_Z1V1))>0 ,L_Z1V1))


talk is cheap, supply exceeds demand
CELAMBARASAN
Partner - Champion
Partner - Champion

Is it Empty or Null. Null is different from empty.

If it is Null then use in set analysis as

count({<Testserie={1},R_Z1V1-={*}>}L_Z1V1)

other wise

use Gysbert Wassenaar suggestion.