Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
giosultan
Contributor
Contributor

Loading Cross Table with NUM#

Dear All,

I have loaded the cross table and thought converted text strin into a numeric field, but somehow fields from other tables are not associated correctly? What is the point I am missing?

here is the script:

LOAD Kostenstelle,

    Periode,

    FY,

    [Menge erfaßt gesamt]

FROM

(ooxml, embedded labels, table is [2017]);


LOAD Kostenstelle,

    Periode,

    FY,

    [Menge erfaßt gesamt]

FROM

(ooxml, embedded labels, table is [2018]);


LOAD Kostenstelle,

    Objektbezeichnung

FROM

(ooxml, embedded labels, table is Abt);


CrossTable(Perio, FTE)

LOAD Kostenstelle,

    [1],

    [2],

    [3],

    [4],

    [5],

    [6],

    [7],

    [8],

    [9],

    [10],

    [11],

    [12]

FROM

(ooxml, embedded labels, table is MA);


MA:

load Num# (Perio) as Periode

Resident MA;


I would like to achieve that Perio is associated with the field Periode


thank you in advance


0 Replies