Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Line/Bar Chart with two dimensions

Hi,

I have data of the following format:

IDReceipt Time IntervalSend Time Interval
116:0017:30
215:0016:00
311:0014:30
418:0018:15

I want to display the time intervals on X, the counts per interval on Y on a line chart.

Time intervals on X and EITHER receipt or send count on Y is easy - but how do I get TWO LINES in there, one per dimension?

Bar chart would be fine as well!

Thank you!
Oli

13 Replies
Anonymous
Not applicable
Author

send me the current image,without that it will be difficult for us to solve your query

Not applicable
Author

I can't send anything. I need to procude something like the image above, it's probably not even possible in QlikView. Will just have to do it in Excel I guess.

thomduvi83
Partner - Contributor III
Partner - Contributor III

You don't have two dimensions (only time), but two expressions (count of sent & received)

Prepare a bit the data in the model to have something like this :

TimeID SentID Received
16:001-
16:00-2
17:30-1
18:004-
...

with something like :

LOAD Receipt_Time as Time, ID as Receipt_ID RESIDENT MyTable

CONCATENATE LOAD Send_Time as Time, ID as Send_ID RESIDENT MyTable

After that it will be easy to produce your graph.

Not applicable
Author

Thanks Thomas, kind of guessed I would have to go down that route. Will make a few changes then!