Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Script to get at the Inline

Needful to get Journal='IC','IG and class='SAS','AB''

Previously for single Journal='ES','EE' DONE LIKE THIS

TEMP:

Load * Inline

[

Key

ES

EE

  ];

LOAD Office,

     Cur,

     Manajor,

     Type,

     Number,

     Class,

     Journal,

     [Amount Me]

FROM

(ooxml, embedded labels, table is Sheet1)

where exists (Key,Journal );

DROP Table TEMP;

1 Solution

Accepted Solutions
ashfaq_haseeb
Champion III
Champion III

like this

LOAD Office,

     Cur,

     Manajor,

     Type,

     Number,

     Class,

     Journal,

     [Amount Me]

FROM

[My Data Struggle.xlsx]

(ooxml, embedded labels, table is Sheet1)

where match(Journal,'IC','IG') and match(Class,'SAS','AB');

Regards

ASHFAQ

View solution in original post

3 Replies
ashfaq_haseeb
Champion III
Champion III

like this

LOAD Office,

     Cur,

     Manajor,

     Type,

     Number,

     Class,

     Journal,

     [Amount Me]

FROM

[My Data Struggle.xlsx]

(ooxml, embedded labels, table is Sheet1)

where match(Journal,'IC','IG') and match(Class,'SAS','AB');

Regards

ASHFAQ

ashfaq_haseeb
Champion III
Champion III

Hi,

Can you close this thread?

Regards

ASHFAQ

Not applicable
Author