Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
xyz1
Creator III
Creator III

?

.

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

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
tresB
Champion III
Champion III

Count(

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

xyz1
Creator III
Creator III
Author

.

tresB
Champion III
Champion III

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)]

)