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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
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.

1 Reply
sunny_talwar

May be try this:

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