Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
1 Solution

Accepted Solutions
tresesco
MVP
MVP

Count(

          If(Match([Feasibility Planned] , '0', '1', '2') and Match([Updated Phase],'Feasibility') ,  [NAME OF PROJECT (Code - Title)]))

View solution in original post

3 Replies
tresesco
MVP
MVP

Count(

          If(Match([Feasibility Planned] , '0', '1', '2') and Match([Updated Phase],'Feasibility') ,  [NAME OF PROJECT (Code - Title)]))

xyz1
Creator III
Creator III
Author

.

tresesco
MVP
MVP

No, it would be:

if(

     ( [Feasibility Planned]='0' OR  [Feasibility Planned]='1' OR [Feasibility Planned]='2' )

     AND  [Updated Phase]= 'Feasibility' , [NAME OF PROJECT (Code - Title)]

)