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: 
JoseGarcia
Creator III
Creator III

Formula

Hi there, 

Master measure below does not apply when I select a project.

Count({<[Project Name]>} IF([Physical % Complete] <'100%', [Project Name]))

Is there any other way I can re-formulate this expression so that when I select project  it returns related values?
Thanks a million

Jose

Labels (1)
14 Replies
JoseGarcia
Creator III
Creator III
Author

the formula behind Total completed: 

Count number of rows with Project Name in Column A and equal to 100% in Column J

Does this hep?

NitinK7
Specialist
Specialist

try below steps

1. Need to remove % sign in value at script level

Load

"ActOwner (A)",
"Physical % Complete",
Num("Physical % Complete",'#,##')*100 as "Physical % Complete1",
Variance  ;

then use exp like below

=Count( {< [Physical % Complete1] ={"<100"} >} [Project Name] )

NitinK7
Specialist
Specialist

do you want equal to 100 or less than 100??

if equal to 100 then

=Count( {< [Physical % Complete1] ={"100"} >} [Project Name] )

agigliotti
MVP
MVP

make this modification in the script to create a primary key:

([Project Name] &
ActivityID & [Activity Name] ) as KEY0;

in UI:

=Count( {< KEY0 = {"=[Physical % Complete]=1"} >} KEY0 )

The Power of shining a light on the dark side of your data.
Follow me on my LinkedIn | Know Gamma Informatica at gammainformatica.it
JoseGarcia
Creator III
Creator III
Author

@agigliotti , @NitinK7 

Successssssss  🤓

Both, thanks a million for the support! 
It worked. 

JoseGarcia_0-1616154421767.png


Just need to recreate pattern to suit other formulas.
🙂