Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Can i use Calculated Column for Interval match

Hi Friends

I need to use a Calculated Column for interval match. I attached my script here. It execute with out error. But I Can't get the association b/w the interval match and my Calculated column

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

5 Replies
MK_QSL
MVP
MVP

May be try this

Sales:

LOAD [Order ID],

     Year,

     [Order Date],

     [Employee ID],

     Status,

     [Customer Name],

     [Product ID],

     [Shipped Date],

     [Shipping Fee],

     Taxes,

     [Order Total],

     Interval(Date(Floor([Shipped Date]))-Date(Floor([Order Date])),'D') as Days

FROM

[\\f-typhon\home2$\z014261\MyDocs\Sales Orders1.xls]

(biff, embedded labels, table is [Order List$]);

Inter:

LOAD * INLINE [

    Start, End, Order

    2, 5, Order1

    6, 10, Order2

    11, 15, Order3

    16, 20, Order4

    21, 25, Order5

    26, 31, Order6

];

Inner Join

IntervalMatch(Days, [Order ID])

LOAD Start, End, [Order ID] Resident Inter;

Not applicable
Author

Inner Join

IntervalMatch(Days, [Order ID])

LOAD Start, End, [Order ID] Resident Inter;

Manish it raise exception.. I didn't use that column in Inter table.

Not applicable
Author

Brother am really sorry I got my Output really Thankyou very much

MK_QSL
MVP
MVP

Use this..

Not applicable
Author

Really awesome dude............