Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
TinaHensel
Contributor III
Contributor III

Boxplots for non aggregated measures

Hello,

I have some issues on using Boxplots in Qlik Sense.

Lets say I have the following data:

date | seconds

16.04.2021 | 1

16.04.2021 | 4

16.04.2021 | 8

16.04.2021 | 3

15.04.2021 | 1

15.04.2021 | 2

15.04.2021 | 1

...

 

Now i want to create a Boxplot with the dimension date and seconds as measure. I have no ideas how to setup the values for "dimenson -> box" and "dimenson -> x axis".

Any ideas on how to do this?

Thank you very much!

 

 

 

1 Solution

Accepted Solutions
rubenmarin

Hi, you can add an identifier for each row, like a new field with just "RowNo() as row".

The set this row fied as box, date as x-axis and seconds as y-axis

LOAD *, RowNo() as row Inline [
date | seconds
16.04.2021 | 1
16.04.2021 | 4
16.04.2021 | 8
16.04.2021 | 3
15.04.2021 | 1
15.04.2021 | 2
15.04.2021 | 1
](delimiter is '|')

rubenmarin_0-1618647780302.png

 

View solution in original post

2 Replies
rubenmarin

Hi, you can add an identifier for each row, like a new field with just "RowNo() as row".

The set this row fied as box, date as x-axis and seconds as y-axis

LOAD *, RowNo() as row Inline [
date | seconds
16.04.2021 | 1
16.04.2021 | 4
16.04.2021 | 8
16.04.2021 | 3
15.04.2021 | 1
15.04.2021 | 2
15.04.2021 | 1
](delimiter is '|')

rubenmarin_0-1618647780302.png

 

TinaHensel
Contributor III
Contributor III
Author

Working, thank you!