Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

CONDITIONAL SUM

hI folks!!

I have three tables:

Table 1: MES_BALANCE, AÑO, MES, ID

Table 2: SOCIEDAD, CUENTA, MES_BALANCE, IMP_DIARIO, ID_SOCCTA

Table 3: ID_SOCCTA, IMP_ANALITICA

I select information by selecting AÑO and MES (YEAR and MONTH)

Could I sum acumulate imp_analitica until month and year selected?

I create Table 1 exclusively to get an ID and sum it like: SUM({$<ID={'<=$(=ID)'} >} IMP_ANALITICA)

No data appears because ID is not a selected field, so I tried SUM({$<ID={'<=$(=Max(ID))'} >} IMP_ANALITICA)...

and wrong data.

Anyone can help me? I appreciate your help because I,m going crazy

Fiber9906

1 Solution

Accepted Solutions
Not applicable
Author

HI

Hope this helps:

add a new filed :

LOAD AÑO,

MES,

DIARIO,

monthname(makedate(AÑO,MES)) as MESAÑO,

// COMPANY,

// ACCOUNT,

COMPANY&'-'&ACCOUNT ID_COMACC,

COMPANY&'-'&ACCOUNT&'-'&AÑO&'-'&MES AS ID_COMACC2,

DH,

IMPORTE,

IMP_CONTA

FROM (biff, embedded labels, table is CONTA$);

then, change your expressions to:

SUM({$<MESAÑO={'<=$(#=max(MESAÑO))'}, MES=, AÑO=, DIARIO={'0'} >} IMP_ANALITICA)

best regards!



View solution in original post

10 Replies
Not applicable
Author

First of all, click on Table Viewer to check if the relationship between the tables is ok.

Not applicable
Author

I think it is, but I am reviewing constanly. Has it sense what I´m saying, isn´t it?

Anonymous
Not applicable
Author

Can you share the file with us?

Not applicable
Author

Is the 'ID' of table 1 the same of 'ID_SOCCTA' of table 2 and 3?

Because if not, then you'll create something to conect the two tables, at leas I guess it's this.

I'm new on Qlikview, so I trying to help you and this way helping me to learn more...

Not applicable
Author

Sorry but I can´t upload a qv files. I´ll give you my example and my explanation in two docs

Not applicable
Author

And data to build the file. I´ll give the script in next post

This is the first time I link tables... but second liknig level is too hard for me.

I appreciate any answer.

Not applicable
Author

The script

Not applicable
Author

I found an idea to get my numbrs but it´s not very intuitive to users. To create another table with an ID, AÑO, MES fields and change relationship. But in my formulas it´s necessary to select filtering field because if not, it doesn´t work.

Any more ideas?

Fiber9906

Not applicable
Author

HI

Hope this helps:

add a new filed :

LOAD AÑO,

MES,

DIARIO,

monthname(makedate(AÑO,MES)) as MESAÑO,

// COMPANY,

// ACCOUNT,

COMPANY&'-'&ACCOUNT ID_COMACC,

COMPANY&'-'&ACCOUNT&'-'&AÑO&'-'&MES AS ID_COMACC2,

DH,

IMPORTE,

IMP_CONTA

FROM (biff, embedded labels, table is CONTA$);

then, change your expressions to:

SUM({$<MESAÑO={'<=$(#=max(MESAÑO))'}, MES=, AÑO=, DIARIO={'0'} >} IMP_ANALITICA)

best regards!