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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

load * from tab_*;

I have 2 qvds: order_200901.qvd and order_200902 with the same structure, code and value.
when I read through the load order * from *. QVD;
QlikView puts the name of the table before each field. I need that the fields have the same table name in all fields. Example
[tab1]:
load * from order_*;
//// in this case the field are
///// order_200901.codigo
////// order_200902.codigo
store tab1 into tab1;

drop table;

[order]:
qualify *;

load * from tab1;
//// in this case the field are
///// order.codigo

with this I have to read 2 times to reach my goal. is that right?
2 Replies
disqr_rm
Partner - Specialist III
Partner - Specialist III

What is you use "UnQualify *;" before you load [tab1] first time?

Not applicable
Author

I think it will really solve. thanks.