Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a qlikview chars showing informatios but it changes when select others selection parameters.
I need to keep the qlikview char data fixed even if the user changes the current selections
I don't find the char property that let me do this.
Anyone know about this?
Hi,
already I solved.
I only less me an conditions in the sintax.
I just had:
Aggr(Sum(Campo),id)
but the correct sintax was Aggr({<campo={3}, id={">0"}>}Sum(Campo),id)
Now is working correctly.
Your answer is good too but don't apply in this case because i had to agregate by field ID.
You need to write your expression as below
Consider that you have SUM(Sales) as expression
Use
SUM({1}Sales)
Hi,
already I solved.
I only less me an conditions in the sintax.
I just had:
Aggr(Sum(Campo),id)
but the correct sintax was Aggr({<campo={3}, id={">0"}>}Sum(Campo),id)
Now is working correctly.
Your answer is good too but don't apply in this case because i had to agregate by field ID.