Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
QlikAnalyst
Contributor II
Contributor II

Visualization help

Hi ,

Need help in creating attached attached visual in Qliksense.

Each book has start and end date and 3 editions .  

 Each editions has  5 different stages dates. 3 Stage is Middle with larger bubble. Color of bubble is based on edition type.

 attached is data associated with visual. 

Tried with scatter chart but no luck.. 

Thanks in advance. 

Labels (1)
1 Solution

Accepted Solutions
MarcoWedel

maybe like this?

MarcoWedel_5-1666819746983.png

 

 

table1:
CrossTable(Stage,Date,4)
LOAD RecNo() as BookID,
     [Serial #],
     [Books],
     [Editions],
     [Start],
     [End],
     [1st],
     [2nd],
     [3rd],
     [4th],
     [5th]
FROM [lib://DataFiles/sample.xlsx] (ooxml, embedded labels, table is Sheet3);

table2:
LOAD RowNo() as ID,
     BookID,
     [Serial #],
     [Books],
     [Editions],
     Stage,
     Date(Date,'MM/DD/YYYY') as StageDate
Resident table1;

DROP Table table1;

 

MarcoWedel_2-1666819652103.png

 

MarcoWedel_3-1666819689775.png

 

MarcoWedel_4-1666819710844.png

If(Stage='Start',LightRed(),If(Stage='End',Yellow(),Pick(Match(Editions,'E1','E2','E3'),Blue(),LightGreen(),RGB(179,162,199))))

 

 

 

View solution in original post

5 Replies
MarcoWedel

maybe like this?

MarcoWedel_5-1666819746983.png

 

 

table1:
CrossTable(Stage,Date,4)
LOAD RecNo() as BookID,
     [Serial #],
     [Books],
     [Editions],
     [Start],
     [End],
     [1st],
     [2nd],
     [3rd],
     [4th],
     [5th]
FROM [lib://DataFiles/sample.xlsx] (ooxml, embedded labels, table is Sheet3);

table2:
LOAD RowNo() as ID,
     BookID,
     [Serial #],
     [Books],
     [Editions],
     Stage,
     Date(Date,'MM/DD/YYYY') as StageDate
Resident table1;

DROP Table table1;

 

MarcoWedel_2-1666819652103.png

 

MarcoWedel_3-1666819689775.png

 

MarcoWedel_4-1666819710844.png

If(Stage='Start',LightRed(),If(Stage='End',Yellow(),Pick(Match(Editions,'E1','E2','E3'),Blue(),LightGreen(),RGB(179,162,199))))

 

 

 

QlikAnalyst
Contributor II
Contributor II
Author

Thanks for your inputs. followed same steps but I'm not getting same visualization as you mentioned. I see   single color as density.  

QlikAnalyst_0-1666881367818.png

QlikAnalyst_1-1666881496987.png

 

QlikAnalyst_2-1666881950527.png

=If(Stage='Start',LightRed(),If(Stage='End',Yellow(),Pick(Match(Edition,'E1','E2','E3'),Blue(),LightGreen(),RGB(179,162,199))))

MarcoWedel

You have to check this box

MarcoWedel_0-1666885653533.png

 

QlikAnalyst
Contributor II
Contributor II
Author

It's working when ID record count is less than 1000. when record count is more than 1000 it's displaying as density chart.  

Both charts have same setting only difference is volume of data.

Is it possible to replace Serial# with Values in Book column?

 

Thanks in Advance.

QlikAnalyst
Contributor II
Contributor II
Author

 Attached is sample which is giving density line..