Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey
Underneed you can see my code where i try to accumulate Consommé_CONSO
SO the Consommé needs to be accumulated bases on the month(Mois de conso_MONTH_CONSO) and the Post Budg Int Numb_POSTBUDG
Directory;
test:
LOAD
%KEY_ZCONSOMMATION_ANBUD_TBUDGET,
Nr_ORG,
[Mois de conso_MONTH_CONSO],
[Post Budg Int Numb_POSTBUDG],
Consommé_CONSO
FROM
[Brussels Gewest\QlikViewStorage\Private Files\Data\ZCONSOMMATION.QVD]
(
qvd);
noconcatenate
tmp:test
order by [Post Budg Int Numb_POSTBUDG] asc,[Mois de conso_MONTH_CONSO]
asc;
drop
tabletest;
Load
[Post Budg Int Numb_POSTBUDG],asc;
drop
tabletmp;
Hi,
The function ISNULL() return -1 for true and 0 for false, maybe you need to check the condition:
IF( ISNULL(....) = -1, Do....., Else....)