Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
vireshkolagimat
Creator III
Creator III

specific data from excel sheet

Hi Team,


if QlikView has the capability to reference a specific cell range in an Excel file?  For example, could it look specifically at something like A3:F20?


Regards,

Viresh

6 Replies
sunny_talwar

Yes you can play around with the settings of what you need to bring in. Do you have a sample?

settu_periasamy
Master III
Master III

Hi,

You can use 'First' statement before Load Statement. for e.g if your data some thing like below screen  shot..

Picture1.jpg

First 18
LOAD  A,
     
B,
     
C,
     
D,
     
E,
     
F
FROM
Book1.xlsx
(
ooxml, no labels, header is 2 lines, table is Sheet1);

tamilarasu
Champion
Champion

Hi,

You can also use RecNo() function to load specific cells. Below script loads data from range A3:F20.

LOAD A,

     B,

     C,

     D,

     E,

     F

FROM

[EmpOff.xlsx]

(ooxml, no labels, table is Employee) Where RecNo()>2 and RecNo()<21;

HirisH_V7
Master
Master

Hi,

Look into this ,

Loading Excel Data into QlikView

HTH,

Hirish

HirisH
“Aspire to Inspire before we Expire!”
vireshkolagimat
Creator III
Creator III
Author

Hi please find the below sample.I want to bring the data as is into QlikView and also the range is not fixed.

Bring to QV.PNG

Thanks

Viresh

JoaquinLazaro
Partner - Specialist II
Partner - Specialist II

Hello:

In the script window press button TableFiles, select your excel file, press next twice then press Enable Transformation Step

Hope it helps you

Joaquín