Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

illegal combination of prefixes

Hi,

I have extracted budget data from excel using cross table and i would want to append to the fact table.

Budget:

concatenate

CrossTable(Month, Budget )

load a

       b

from

3 Replies
alexandros17
Partner - Champion III
Partner - Champion III

You have to load it first and then concatenate (because it is a crossatble)

Anonymous
Not applicable
Author

Hi,

Precsely what i did, I load it initially and created a loop and now appended it.Perhaps you should please write the syntax.

alexandros17
Partner - Champion III
Partner - Champion III

if your crosstable is for example "TableA" and previous tables are "TablesX"

you have to

Finaltable:

noconcatenate

load

     *

resident TablesX;

concatenate

load * resident TableA;

drop tables TableA, TablesX;