Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Mark_76
Contributor
Contributor

Replace Null With Value after association

Hello everyone,

I'm having trouble replacing nulls with value after join

If someone could help me I would appreciate it.

TableHechos:

LOAD

    regionCode,

    regionName,

    gpNum,

    DETALLE,

    Mes,

    Valor,

    GESTION

FROM [lib://AttachedFiles/BD.xlsx]

(ooxml, embedded labels, table is Hoja1);

 

Parametro:

LOAD

    gpNum,

    "CTA DETALLE",

    KPI

FROM [lib://AttachedFiles/BD.xlsx]

(ooxml, embedded labels, table is Hoja2);

 

 

 

Labels (1)
1 Solution

Accepted Solutions
Mark_76
Contributor
Contributor
Author

If I was confused it was association, I will close the thread and create it correctly.
Thank you

View solution in original post

2 Replies
stevejoyce
Specialist II
Specialist II

Your load script you posted doesn't have any joins nor the Gpflag field.  But you can use coalesce function to set a null value on a field:  example:  coalesce([field], 'n/a')

Mark_76
Contributor
Contributor
Author

If I was confused it was association, I will close the thread and create it correctly.
Thank you