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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
JoseGarcia
Creator III
Creator III

Expression

hi there, 

trying to create a measure that calculates: 

=26-If(region = 'CNE', Count(TOTAL <region> overall_score),
36-If(region = 'APAC', Count(TOTAL <region> overall_score),
97-If(region = 'Europe', Sum(TOTAL <region> overall_score))))

but only CNE calculates ok

any ideas?

JoseGarcia_0-1747828210886.png

 



Labels (1)
1 Solution

Accepted Solutions
MatheusC
Specialist II
Specialist II

@JoseGarcia 

see leaving it as:

=
If(region = 'CNE',
       26-Count(TOTAL <region> overall_score),
If(region = 'APAC',
       36- Count(TOTAL <region> overall_score),
If(region = 'Europe',
        97-Sum(TOTAL <region> overall_score)

)))


- Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!

View solution in original post

1 Reply
MatheusC
Specialist II
Specialist II

@JoseGarcia 

see leaving it as:

=
If(region = 'CNE',
       26-Count(TOTAL <region> overall_score),
If(region = 'APAC',
       36- Count(TOTAL <region> overall_score),
If(region = 'Europe',
        97-Sum(TOTAL <region> overall_score)

)))


- Matheus

Did you find a solution to your question? Mark the solution as accepted and if you found it useful, press the like button!