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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Date Range

Hi,

I have one table to show the validation date for order.

Orders:
load * Inline
[StartDate,EndDate,OrderId
'2010-10-01','2010-12-01',1
'2010-05-01','2010-07-01',2
]

I want to use a table object to show how many valid orders based on month.

For example:

2010-6 1

2010-11 1

How to achieve it without changing the script.

Thanks.

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

hei attach is a text file with the script

View solution in original post

4 Replies
lironbaram
Partner - Master III
Partner - Master III

hei attach is an example

it changes a little bit the script

but the use of interval match is excatly what you asked for

hope its helps you

Not applicable
Author

Sorry, could you paste the scipt directly, we just buy Named call not client version, so I can not open it.

lironbaram
Partner - Master III
Partner - Master III









orders:

LOAD

OrderId

,

StartDate

,

EndDate

FROM

(

ooxml, embedded labels, table is ??????1)

;

datelist:

load

date(today()-rowno()) as Date

,

year

(today()-rowno()) & '-' & num(month(today()-rowno()),'00') as

MonthYear

autogenerate

3000

;





lironbaram
Partner - Master III
Partner - Master III

hei attach is a text file with the script