Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
pgalvezt
Specialist
Specialist

Line Script

Hi, I have different phases in my formulas. but this particular is not running.

if((sum(Date)>=181  And  sum(Date)<=210) Or num(Field1) <> 8,Dual('Phase7',8)

Thanks

1 Solution

Accepted Solutions
chematos
Specialist II
Specialist II

if

(

     (

      sum(Date)>=181 And sum(Date)<=210

     )

           And Field1 = 'V',

     Dual('181-210 Días',8)

)

View solution in original post

8 Replies
Not applicable

Can you please try ths

if((sum(Date)>=181  And  sum(Date)<=210),If( num(Field1) <> 8,Dual('Phase7',8)))

ericcosmai
Contributor III
Contributor III

Hi.

Looking to this formula... is without a parentheses at the end.

Hope it helps.

Regards.

pgalvezt
Specialist
Specialist
Author

Is not working.

I tried change it for this: but still not working.

 

if

((sum(Date)>=181 And sum(Date)<=210) And Field1 = 'V',Dual('181-210 Días',8)

Thanks

ericcosmai
Contributor III
Contributor III

Can you send any sample application... Only looking... it seems strange... because have this field called Date... I'm not sure if you can make a Sum() on this field without a treatment...

Regards..

pgalvezt
Specialist
Specialist
Author

Date is formated like num. Dont worry for that date because in the other lines works fine. I think the problem is in Or -And.

ericcosmai
Contributor III
Contributor III

I think you can try put the else sentence like a null value... like this: '<empty>'

Look if it solves:

if((sum(Date)>=181 And sum(Date)<=210) And Field1 = 'V',
       Dual('181-210 Días',8)
,
     ''
)

Hope it works. Regards.

ericcosmai
Contributor III
Contributor III

So?

It works?

Regards.

chematos
Specialist II
Specialist II

if

(

     (

      sum(Date)>=181 And sum(Date)<=210

     )

           And Field1 = 'V',

     Dual('181-210 Días',8)

)