Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
nikhilgarg
Specialist II
Specialist II

Expression Error !!

Hey,

I am having a dummy database where i am calculating insurance claimed by female.

I am using following expression but no data is being displayed. Please help

Count({<Product = , [Customer Gender] = {"Female"} , [Maturity Year] = {2014}>}[Customer Name])/Count({<[Customer Gender]={"Female"}>}[Customer Name])

And also i want to compare with MAturity Year <=2014 but when i used [Maturity Year] <= {2014} , it gives me error.

Please tell what to do ??

Thanks

1 Solution

Accepted Solutions
maxgro
MVP
MVP

for maturity add to set analysis

[Maturity Year]={"<=2014"}

View solution in original post

3 Replies
senpradip007
Specialist III
Specialist III

Try like

Count({<Product = , [Customer Gender] = {'Female'} , [Maturity Year] = {2014}>} [Customer Name])

/

Count({<[Customer Gender]={'Female'}>} [Customer Name])

Anonymous
Not applicable

Count({<Product = , [Customer Gender] = {'Female'} , [Maturity Year] <= {2014}>} [Customer Name])

/

Count({<[Customer Gender]={'Female'}>} [Customer Name])

maxgro
MVP
MVP

for maturity add to set analysis

[Maturity Year]={"<=2014"}