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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Above

Hello everyone, I have doubts with Above. I need to add the 1 of my column #Subio

the expression you used was


If Above (Price) <Price )


But at the time of adding this expression does not give me anything in the column of T

otal Subio For this column

I did the expression = Aggr (sum (if ( Above (Price) <Price ), CCO_CompanyName, CC_Mes)


buena.png

Labels (1)
13 Replies
sunny_talwar
MVP
MVP

What are you summing?

=Aggr(Sum(If(Above(Price) < Price, TrueCondition), CCO_CompanyName, CC_Mes)

Anonymous
Not applicable
Author

The times I have 1 in the #Subio column by CC_Mes and CCO_Name

sunny_talwar
MVP
MVP

Not sure I understand

Anonymous
Not applicable
Author

I want to count the 1 of the #Subio column but per month

sunny_talwar
MVP
MVP

What is #subio column's expression?

Anonymous
Not applicable
Author

if(

Above(Precio)<Precio,1,0

)

sunny_talwar
MVP
MVP

May be try this

=Aggr(Sum(If(Above(Price) < Price, 1, 0), CCO_CompanyName, CC_Mes)

or just this

=Sum(If(Above(Price) < Price, 1, 0)

Anonymous
Not applicable
Author

I already tried both but it does not work

Anonymous
Not applicable
Author

In fact a parentesis is missing but still does not work

=Aggr(Sum(If(Above(Precio) < Precio, 1, 0)),CCO_CompraANombre, CC_Mes)