Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator III
Creator III

how to remove multiple headings

Hi,

I have one excel file, page heading repeating in that data, how to remove that headings.

while data loading i need to remove those headings,

when i reload my data should be like,

IDNameAmount
100ABC100
101BCA200
200sunil3500
201jkl900
203qwe909
206ggg1234
500Ramesh890
450Sam230
780Nari735

Thanks in Advance.....

1 Solution

Accepted Solutions
sunny_talwar

May be like this

Table:

LOAD ID,

     NAME,

     AMOUNT

FROM ....

Where not Exists(ID);

View solution in original post

4 Replies
Anonymous
Not applicable

do the fieldnames of the heading change?

sunny_talwar

May be like this

Table:

LOAD ID,

     NAME,

     AMOUNT

FROM ....

Where not Exists(ID);

sunny_talwar

or

Table:

LOAD ID,

    NAME,

    AMOUNT

FROM ....

Where ID <> 'ID';

delmak2000
Creator
Creator

Hi Paul,

I believe you could use a where clause to remove the multiple headings in the data when loading in qlikview...

Try...

LOAD

*

From yourdatapath/xlsx.(xlsx)

where ID <> 'ID'

Regards,

Ayo