Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
SamuelHaag
Contributor III
Contributor III

Use Function GeoAggrGeometry() to aggregate postcodeareas

Hi guys,

I'm trying to aggregate postcode areas to a several sales areas. This is what have in the script so far:

[MapSource]:
LOAD
"Postcode",
"Sales-Region",
FROM [----]
(ooxml, embedded labels, table is UP5);


Map:
LOAD "Sales-Region",
GeoAggrGeometry("Postcode") as [Aggr]
resident MapSource Group By "Sales-Region";


drop Table MapSource;

 

The table [MapSource] is looking like that:

PostcodeSales-Region
01067B1
01069B1
01097B2
01099B2
01108B3
01109B3
........

 

Unfortunately the field [Agrr] is empty after the load. 

 

Maybe you can help me

Thank you!

Regards

 

Samuel

Labels (5)
0 Replies