Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
fmazzarelli
Partner - Creator III
Partner - Creator III

statement if

Hi Community,

I have to create a simply function.

IF (Sosta='Y', count(MancatoCarico),44000)

The result is always 44000. What's wrong?

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

Maybe Sosta is never 'Y' ...

robert_mika
Master III
Master III

Qlik is case sensitive, maybe is 'y' or maybe you have Y is in fact ' Y'

sasiparupudi1
Master III
Master III

try

IF (lower(trim(Sosta))='y', count(MancatoCarico),44000)

hth

Sasi