Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ryanfliehman
Contributor II
Contributor II

Using AGGR in Load Script

Hello, 

I'm trying to get the the most recent BMI (using Max(EncounterDateKey) by patient (patientdurablekey).

When I try using aggr in my load script it keeps giving me an error right Aggr. It looks like it has something to do with the max function of my statement. Below is what I have. Does anyone have any ideas on how I might be able to rewrite or fix this issue?

 

TempTableVisit:
LOAD
PatientDurableKey,
EncounterDateKey,
"M_VISIT.BODY MASS INDEX"
FROM [lib://Qlik Init/Prod/qvds/qvds_Facts/VisitFactRpt.qvd](qvd)
Where "M_VISIT.BODY MASS INDEX" >= '0';

VisitBMI:
LOAD
IF(Aggr(Max(EncounterDateKey),PatientDurableKey),"M_VISIT.BODY MASS INDEX")
Resident TempTableVisit;

Labels (3)
1 Solution

Accepted Solutions
marcus_sommer

It means that the aggregation scope isn't suitable - just remove the other fields - maybe like this:

VisitBMI:
LOAD
Max(EncounterDateKey) as MaxEncounterDateKey, PatientDurableKey
Resident TempTableVisit group by PatientDurableKey;

- Marcus

View solution in original post

4 Replies
marcus_sommer

Aggr() is an UI function. Within the script you need an aggregation load with a group by statement. In your case maybe this:

VisitBMI:
LOAD
Max(EncounterDateKey) as MaxEncounterDateKey, PatientDurableKey, M_VISIT.BODY MASS INDEX
Resident TempTableVisit group by PatientDurableKey, M_VISIT.BODY MASS INDEX;

- Marcus

ryanfliehman
Contributor II
Contributor II
Author

Thanks Marcus.

When I try this and drop the data into a straight table it gives me every date as a maxencounterdatekey.

How would I just get the biggest MaxEncounterDateKey (202001009) for each patientdurablekey?

 

ryanfliehman_2-1613759829611.png

 

marcus_sommer

It means that the aggregation scope isn't suitable - just remove the other fields - maybe like this:

VisitBMI:
LOAD
Max(EncounterDateKey) as MaxEncounterDateKey, PatientDurableKey
Resident TempTableVisit group by PatientDurableKey;

- Marcus

ryanfliehman
Contributor II
Contributor II
Author

Thanks Marcus, this ended up working.