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: 
Anonymous
Not applicable

Expression Help

Hi guys,

Me again!

I have the following expression that a colleague has been using:

Sum({<[Pay Status - Code]={'P'}>}[$(=CTName)])

How do I amend it properly (I've tried, and I'm getting weird and wonderful) to pull everything back, and not just those marked P?

Thanks in advance,

Gareth

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this

Sum([$(=CTName)])

View solution in original post

3 Replies
devarasu07
Master II
Master II

Hi,

measure is variable   [$(=CTName)]) ? if not just use it CTName

=SUM({$<[Pay Status - Code] -= {"P*"}>} [$(=CTName)]) )

or

=SUM({$<[Pay Status - Code] = {"*"} - {"P*"}>} [$(=CTName)]) )

agigliotti
MVP
MVP

what's the problem ??

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

May be this

Sum([$(=CTName)])