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

Expressions

Hello,

I am using this expression with a Text Object.

= num (sum({<[Open Collections Loss Type]={'Chargeback'},[Open Collections Date]={'1/19/2016'}>} [Open Collections Amount]), '$##,###.##')

This has worked fine. My issue though, I would like to use other items such as 'Deposit' too add along with chargeback.

Also, with my date I would like to use a range i.e. 1/1/2016- 1/19/2016.

Thank you,

Manny

Labels (1)
1 Reply
sunny_talwar
MVP
MVP

Try this:

=Num(Sum({<[Open Collections Loss Type]={'Chargeback', 'Deposit'},[Open Collections Date]={'>=1/1/2016<=1/19/2016'}>} [Open Collections Amount]), '$##,###.##')