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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
felippecarone
Contributor
Contributor

Error in set modifier expression

Hi, Tryng this but is not working. 

Count(
{
$
<
[Estoque]={"0,000"}
[Qtd. Dias Cobertura]<{"5,000"}
[Estoque CD]={">0"}
>
}
[Produto]
)

2 Replies
sunny_talwar

Try this

Count({$<[Estoque] = {"0,000"}, [Qtd. Dias Cobertura] = {"<5,000"}, [Estoque CD] = {">0"}>} [Produto])

 

manoranjan_d
Specialist
Specialist

the magic of set analysis searching techniques is below

° FieldName = {value}: when the NewValue parameter is a numeric
value, it is specified as such with no additional modifications
° FieldName = {'TextValue'}: when the NewValue parameter is
text, we should enclose it in straight single quotes
° FieldName = {"SearchString"}: if we want to use a search string
as the value definition, we should enclose it in straight double quotes