Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Ironduke
Contributor II
Contributor II

Show 100% in KPI instead of dash

I want to calculate  a percentage how many tasks the team are completing each month, which I can do but I also want to show 100% instead of a dash even if they don’t have any tasks that month.

Can that be done, if so how do I add it into the set analysis?

 

Example

Jan had 10 tasks completed 9 in sla,  qliksense shows 90%.

Feb had 6 tasks completed 3 in sla,  qliksense shows 50%.

Mar had 0 tasks completed 0 qliksense shows – (would like it to show 100% instead)

Labels (3)
1 Solution

Accepted Solutions
JordyWegman
Partner - Master
Partner - Master

Hi,

You can put an if() around it.

If (  Count( Tasks)  = 0,

1,

{Your formula}

)

Jordy 

Climber 

Work smarter, not harder

View solution in original post

1 Reply
JordyWegman
Partner - Master
Partner - Master

Hi,

You can put an if() around it.

If (  Count( Tasks)  = 0,

1,

{Your formula}

)

Jordy 

Climber 

Work smarter, not harder