Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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,
ID | Name | Amount |
100 | ABC | 100 |
101 | BCA | 200 |
200 | sunil | 3500 |
201 | jkl | 900 |
203 | qwe | 909 |
206 | ggg | 1234 |
500 | Ramesh | 890 |
450 | Sam | 230 |
780 | Nari | 735 |
Thanks in Advance.....
May be like this
Table:
LOAD ID,
NAME,
AMOUNT
FROM ....
Where not Exists(ID);
do the fieldnames of the heading change?
May be like this
Table:
LOAD ID,
NAME,
AMOUNT
FROM ....
Where not Exists(ID);
or
Table:
LOAD ID,
NAME,
AMOUNT
FROM ....
Where ID <> 'ID';
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