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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

expression help

Hi,

Trying to create an expression in a a text box that will show number of properties that have a value of less than £5000.

Here is expression we currently have but its not working at all:

= Count([Address] [NPV Total] <=-'£5000.00')

Please can someone help?

Chris

1 Solution

Accepted Solutions
Not applicable
Author

Count( {<[NPV Total]={"<5000"}>} [Address])

View solution in original post

6 Replies
Not applicable
Author

Count( {<[NPV Total]={"<5000"}>} [Address])

sinanozdemir
Specialist III
Specialist III

Hi Chris,

Try this:

Count({<[NPV Total] = {"<=£5000.00"}>}[Address] )

Not applicable
Author

Hi,

Can you help with the above. We want the same expression but to cover situation where its between 2 values: -£4999 - £4999.

I tried this but it doesn't work?:

=Count( {<[NPV Total]={>='-£4999.00' AND [NPV Total]<='£4999.00'}>} [Address])

Chris

settu_periasamy
Master III
Master III

Try this

=Count( {<[NPV Total]={>='-£4999.00'<='£4999.00'}>} [Address])

Not applicable
Author

Hi,

Unfortunately no..its says 'error in set modifier ad hoc element list.

Underline in red on }>} [Address]

Chris

settu_periasamy
Master III
Master III

May be try this

=Count({<[NPV Total]={">=-4999<=4999"}>} [Address])