Skip to main content
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

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 !!