Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

A Simple "count()" Chart With A Date Dilemma

So we have three fields in this one system - an order ID, a start date and an end date.

Order IDRequested DateCompleted Date
654985/1/2013 12:24:16 PM5/13/2013 5:02:22 AM
498463/14/2013 3:35:21 AM3/27/2013 6:32:17 PM
613854/12/2013 7:08:54 PM4/21/2013 10:52:02 AM

What we need to get is a rolling chart of how many orders were submitted in a week and how many were completed in that same week. With the dimension of

 

=date(WeekStart(REQUESTED_DATE,0,0),'MMM-D')

I can get the following chart but obviously this means nothing:

GFScreenshot26 May. 14 04.29 PM dnelson.jpg

Any idea on how to solve this problem?

Labels (1)
2 Replies
swuehl
Champion III
Champion III

Maybe like attached (using CROSSTABLE LOAD and set analysis)?

Not applicable
Author

My apologies for the late response, but my actual table has 47 fields, and crosstables don't seem to play well with large tables unless I'm doing it wrong. The original load statement I'm working with is below. The three aforementioned fields I need are still the same (Order ID, Requested/Completed date). If crosstable won't work with the amount of fields in his table, perhaps there's another way?

Q_JEM:

LOAD
     *,
    
AutoNumber(ORDER_ID & '-' & COLOR_ID) as ORDERKEY,
    
AutoNumber(COLOR_ID & '-' & STATUS) as StatusKey,
    
AutoNumber(COLOR_ID & '-' & SYSTEM_NAME) as SystemKey,
    
If(ADD_DATE>Today()-14,1,0) as IDLE_ORDER;
SQL SELECT *
FROM Oracle5.Q_JEM
where
(COLOR_ID=3 OR COLOR_ID=22 OR COLOR_ID=63 OR COLOR_ID=1 OR COLOR_ID=74)
and
(STATE != 0 AND STATE != 11)
and
(STATUS != 'Cancelled' and STATUS != 'Refunded')
and
(DEPT='EMR' or DEPT='Logst' or DEPT='Development' or DEPT='OSC')
and
(ADD_DATE>=(sysdate-730))
;