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

Nested Condicions

Hi,

Im trying to use a nested if but i dont know which is my mistake, this is my sentences:

if(PROGRAMA={'Aplicación de flúor tópico'} or PROGRAMA={'Aplicación de sellantes'}, IF(NumeroFila < 3,'Cumple','No Cumple'),'OTRAS')


thanks if you give a light

1 Solution

Accepted Solutions
cmorri1988
Creator
Creator

You could try...

if(PROGRAMA='Aplicación de flúor tópico' or PROGRAMA='Aplicación de sellantes' ,IF(PROGRAMA < 3,'Cumple','No Cumple'),'OTRAS')

View solution in original post

1 Reply
cmorri1988
Creator
Creator

You could try...

if(PROGRAMA='Aplicación de flúor tópico' or PROGRAMA='Aplicación de sellantes' ,IF(PROGRAMA < 3,'Cumple','No Cumple'),'OTRAS')