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

Syntax in Text box

Hi,

Please correct the below syntax.  It's not working.

='Grand Total: ' &count(
{<
[FLAG1]={'E'}
>}
DISTINCT TEST_CASE_ID) +
count(
{<
[FLAG1]={'C'}
>}
DISTINCT TEST_CASE_ID)

Here, 'Grand Totat' alone is working fine or the expression part alone is working fine.  However, I couldn't combine both and get the results..

Thanks,

Sudha.

Labels (1)
1 Reply
sunny_talwar
MVP
MVP

May be try this:

='Grand Total: ' & (Count({<[FLAG1]={'E'}>} DISTINCT TEST_CASE_ID) + Count({<[FLAG1]={'C'}>}DISTINCT TEST_CASE_ID))