Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Note: You may notice some temporary visual or styling issues in the Community. Our vendor is actively investigating.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

hi

i have a doubt on qlikview..

need help for any person..

what kind of ways we can use map.. give me an clear example for that...

5 Replies
mohamed_ahid
Partner - Specialist
Partner - Specialist

Hi

you can use google map api over a graph . here you have a step by step exemple :

Step-by-Step Google Map API v3 integration

or using extension like geoqlik or maybe SVG map .

Agis-Kalogiannis
Employee
Employee

You need to use an extension object for that Karthy as QlikView does not offer something like that or you can try the following:

Google Maps and Qlikview

Not applicable
Author

sir i ask about map for using connect document. kindly give me an clear example

settu_periasamy
Master III
Master III

Hi Karthy,

Are you talking about Apply Map?

This helps.

Apply Map Concept

Anonymous
Not applicable
Author

Hi,

Check this example for Mapping load and Apply Map functions.

Mapping load is used for load the mapping table where as Apply Map is used for mapping the Mapped table to another table for more see the example below.

//Mapping Table

CustomerTable:
Mapping Load * Inline
[
CustomerID, Country
A, Germany
B, France
C, Italy
D, Poland
E, Spain
Z, UK
]
;


Sales:
Load *,
ApplyMap('CustomerTable', CustomerID, 'Unknown') as CustomerCountry

Inline
[
CustomerID, Month, Sales
A, Jan, 100
B, Jan, 200
C, Jan, 300
D, Feb, 150
E, Mar, 200
F, Apr, 100
A, May, 140
D, May, 80
E, May, 100
F, Jun, 150
]
;