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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

Excel extract data scenario

Hi,

I believe the attached spreadsheet will give more explanation than me.

Please find the attached spreadsheet.LET ME KNOW IF REQUIRED ANY INFORMATION.

Thanks..

1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

try this

a:

LOAD id,

     sales

FROM

(ooxml, embedded labels, table is Sheet1);

Data: 

LOAD *, 

     If(sales, sales, Peek(Value1)) as Value1 

    Resident a Order By id Asc; 

Drop table a; 

View solution in original post

4 Replies
Chanty4u
MVP
MVP

try this

a:

LOAD id,

     sales

FROM

(ooxml, embedded labels, table is Sheet1);

Data: 

LOAD *, 

     If(sales, sales, Peek(Value1)) as Value1 

    Resident a Order By id Asc; 

Drop table a; 

Chanty4u
MVP
MVP

prev.PNG

nareshthavidishetty
Creator III
Creator III
Author

Excellent

Can you explain what value1 will do.

Thanks..

Chanty4u
MVP
MVP

here clearly explained the Peek function  go through it

Difference between peek() and previous() funcation

Please close the thread if you got the ansswer