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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
sgg_gaikwad
Partner - Contributor II
Partner - Contributor II

Getting Problem with Interval Match() Can any one Give a Proper Solution?

Layout:

LOAD LineNum,

     Type,

     Description,

     [GL Account Start] ,

      [GL Account End] ,

     [Total Start],

     [Total End],

     Sign

FROM

(ooxml, embedded labels, table is PAndL);

PLData:

LOAD //Period,

     Date,

     GLAccount,

     Office,

     Amount,

     AccountType

     //F7

FROM

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

IntervalMatch(GLAccount)

LOAD

[GL Account Start]  &  [GL Account End] as GLStartEnd Resident Layout;

Labels (1)
5 Replies
MK_QSL
MVP
MVP

Change

IntervalMatch(GLAccount)

LOAD

[GL Account Start]  &  [GL Account End] as GLStartEnd Resident Layout;


to


Final:

IntervalMatch(Date)  Left Join Load [GL Account Start] , [GL Account End]  Resident Layout;


Left Join (PLData) Load * Resident Layout;


Drop Table Layout;


manideep78
Partner - Specialist
Partner - Specialist

Try This


IntervalMatch(Date)

LOAD

[GL Account Start]  ,  [GL Account End]  Resident Layout;

sgg_gaikwad
Partner - Contributor II
Partner - Contributor II
Author

Hi Manish,

         

                    Thanx for Reply Its working..

But,I don't want single table in Data Model I need Three Different table in Data Model...

sgg_gaikwad
Partner - Contributor II
Partner - Contributor II
Author

Hi Manideep,

                    It is creating a Synthetic key in Data Model &  i need Three Separate table in Data Model..

MK_QSL
MVP
MVP

Remove

Left Join (PLData) Load * Resident Layout;


Drop Table Layout;


add

Left Keep (PLData) Load * Resident Layout;