Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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...
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 .
You need to use an extension object for that Karthy as QlikView does not offer something like that or you can try the following:
sir i ask about map for using connect document. kindly give me an clear example
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
];