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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

SET ANAYSIS

Hi all,

Can any one tell me why in below logic only function is used?

ONLY({<Well.Name= >}IF(Storage.Name='Beer',C1))

Regards

Adarsh

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

Set analysis can only be used within an aggregation function. It seems that in order to ignore selection in Well.Name, you needed to use some aggregation function... and that is why only() is used. Alternatively, you can also use Concat, MinString, MaxString for string functions.

View solution in original post

2 Replies
sunny_talwar

Set analysis can only be used within an aggregation function. It seems that in order to ignore selection in Well.Name, you needed to use some aggregation function... and that is why only() is used. Alternatively, you can also use Concat, MinString, MaxString for string functions.

Anonymous
Not applicable
Author

Thanks Sunny , it was helpful !!