Community
This field is required.
Only these extensions are allowed(.jpg, .JPG, .jpeg, .JPEG, .gif, .GIF, .png, .PNG)
Tags cannot contain the characters ' /, \\, #, ?, or ; >,< '
Only these extensions are allowed(.zip,.ZIP,.pdf,.PDF,.qvf,.QVF,.qvw,.QVW)
Qlik Sense documentation and resources.
Hi All,
Following are the steps for creating a line layer ( Route Map ) in Qlik Sense.
Script :
Cities:
LOAD
Distinct
Source
FROM [lib://RouteMap/Route-Map Data.xlsx]
(ooxml, embedded labels, table is [Routes- Output]);
Destination
Temp_Facts:
Source as CityFrom,
Destination as CityTo,
"FC Plying",
"No of Transactions",
"Actual Sales",
"Lost Opportunity"
Facts:
NoConcatenate
*,
CityFrom AS City
Resident Temp_Facts;
Drop Table Temp_Facts;
This way we can develop route map in Qlik Sense , Please ensure you have Sept-2018 release for implementing the same.
Thanks
Vikas