Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey Guys!
I've got a Problem with my pivottable.
There is data until YTD (ist) and for the rest a forecast is calculated (prog).
Now I want to combine these columns (kombi).
The problem, as you can see, is that the total is not calculated correctly. Only the ist-valus are considered although the rows are correct.
Does anybody know a solution?
Thanks in advance!!
Monat,Elnkaufe))
Note: If you have other dimensions, add that as well in aggr function
hi,
you need to do something like
sum(aggr(if(sum(ist)>0,sum(ist),sum(prog)),Monat,Elnkaufe...))
I'm already using Sum(Aggr()) in my expressions
What is the expression you are using?
try to add field in aggr which is used as column display in pivot
How would you adjust this Expression using Sum(Aggr())?
The following Design Blog post may be of help on this one:
https://community.qlik.com/t5/Qlik-Design-Blog/Set-Analysis-in-the-Aggr-function/ba-p/1463822
@Kushal_Chawda If you want to have another look, the poster did post the expression...
Regards,
Brett
Monat,Elnkaufe))
Note: If you have other dimensions, add that as well in aggr function
It's working!! Thank you!