Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello QVspecialists,
i really tried to find a solution by searching the forums but haven't found the right one for my problem..
I'm loading 3 Columns (amongst others) out of Excel which basically contain the same kind of information:
Columns in Excel:
Materialbezeichnung
Materialbezeichnung1
Materialbezeichnung2
Required Dim in QlikView:
Materialbezeichnung
I now have 3 Dimensions in QlikView and need to find a way to merge them into one.
Can anybody help me here?
Best regards
try this
Tab1:
load
Materialbezeichnung,
Materialbezeichnung1,
Materialbezeichnung2 from Tab1;
Tab2:
load
Materialbezeichnung
resident Tab1;
concatenate load
Materialbezeichnung1 as Materialbezeichnung
resident Tab1;
concatenate load
Materialbezeichnung2 as Materialbezeichnung
resident Tab1;
***********************************************************************************************************
or try this
load *,
subfield(Materialbezeichnung & ',' & Materialbezeichnung1 & ',' Materialbezeichnung2,',') as Materialbezeichnung
resident yourtable;
see attached file
try this
Tab1:
load
Materialbezeichnung,
Materialbezeichnung1,
Materialbezeichnung2 from Tab1;
Tab2:
load
Materialbezeichnung
resident Tab1;
concatenate load
Materialbezeichnung1 as Materialbezeichnung
resident Tab1;
concatenate load
Materialbezeichnung2 as Materialbezeichnung
resident Tab1;
***********************************************************************************************************
or try this
load *,
subfield(Materialbezeichnung & ',' & Materialbezeichnung1 & ',' Materialbezeichnung2,',') as Materialbezeichnung
resident yourtable;
see attached file
Thank you;
The resident Method worked for me:)