Hi
I want to translate the data in my report.
I have a xls file

In code i have
Language_Inline:
LOAD * INLINE [
Language, short_lang
Dutch, nl
French, fr
English, en
________
Listitems_dotation_fraction:
LOAD id as fraction_id, name as fraction_name_nl
FROM
[..\..\2. Extraction to QVD layer\QVD\Listitems_dotation_fraction.qvd]
(qvd);
Left Join(Listitems_dotation_fraction)
LOAD fraction_id,
fraction_name_en,
fraction_name_fr
FROM
(ooxml, embedded labels, table is Dotations);
But when i change the language into English the word isnt changing in my report.
What do i do wrong?