Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
in Qlikview please:
For example, if the value in the 2nd row is lower than in the row above to be colored in green.
Thank you
TOTAL ignores all respectively certain dimensions (not above() or rowno() but a sum() or max() have further TOTAL options).
For your use-case it will work with TOTAL within the attribut-expressions as well as as direct expressions - at least in your example it does.
Hello, you can use this type of function here. This should answer your question
if(Above([Nombre de joueur])>[Nombre de joueur],green())
merci, but I don't speak French.
This doesn't work in a Straight Table in QlikView expression's Background color property if(above(Price) > Price, green())
Maybe adding an aggregation will change the results, means:
if(above(sum(Price)) > sum(Price), green())
In the function [Nombre de joueur] is a measure, not the name of a field. You must replace it with the measure you want.
I did. Thank you Clement 🙂
Thanks Marcus. This doesn't solve the issue
You may approach a possible solution by adding parts within the normal expressions, like:
above(YourExpression)
Now you will see the results and comprehend what's going on and then adjusting it.
Good tip. Thanks.
it just doesn't work
Depending on the used number of dimensions you may need to add: above(TOTAL YourExpression)
Beside this make sure that YourExpression itself is working and that it relates to an expression and not to a dimension.