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: 
Qlikuser09
Creator II
Creator II

I want to display the fields and the respective values in the text box or as title .

= Aggr( If( Match([Status], 'No ', 'Yes', 'In Work'), [VIP Rsp Status] & ': ' & Count({<[VIP Rsp Status]={'No ', 'Yes', 'In Work

'}>}[Status])

    ),

    [Status]

)

Expected Result

No : 2

Yes : 3

In progress :4

The above code works only hen the field is selected , but i need the values to be displayed irrespective of the selections made

 

2 Replies
BrunPierre
Partner - Master II
Partner - Master II

Perhaps?

Concat(Aggr( If( Match([Status], 'No ', 'Yes', 'In Work'), [VIP Rsp Status] & ': ' & Count({<[VIP Rsp Status]={'No ', 'Yes', 'In Work'}>}[Status])),[Status]),', ')

vinieme12
Champion III
Champion III

As below

 

concat({<Status={'Yes','No'}>} Distinct aggr([VIP Rsp Status] &':'&count(Status),Status), chr(10))

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.