Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hey Guys.
Can anyone give me a good basic example of an interval match? Ive searched the forums but all the ones I came accross were a bit to confusing for me. I want to try and use Interval Match in one of my projects but I don't understand it properly.
Check this post http://community.qlik.com/forums/t/23510.aspx
I've tried to explain there how to replace IntervalMatch by usual Load statements. Maybe it can help.
Hi,
Hope that helps you.
very nice, but theres one problem, its French and Im English lol
Sorry, i've forgot it ! I translate it now.
That's it !
Thanks for the replies Martin i really appreciate it, however, I'm still not sure what to do to create an interval match. Maybe you can help me?
I want to create an nterval match between two fields, StartDate and EndDate.
LOAD StartDate,
EndDate;
SQL SELECT *
FROM Employee;
Anything?
It's a certification, try to do it yourself.
i tried INTERVALMATCH (StartDate,EndDate); SELECT StartDate,EndDate FROM SalesTerritoryHistory; but its not working??
PLEEEEES HELP!!!!
Firstly, you have to use the intervalmatch function with only one argument.
So you have to do something like :
INTERVALMATCH (OrderDate)