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: 
kamielrajaram
Creator III
Creator III

RE:Loading table

Good day,

Please could you assisit with the following,

I have 1 address table with 2 address types namely home and postal. Some records have a postal code for both types, this is fine as Iwill always use the postal address. the issue comes in when the postal code for the postal address is missing,but exists in the home type, then I will require the postal code for the home type.

thanks in advance

Kamiel

1 Solution

Accepted Solutions
Not applicable

I think you are having two records, one for each of the address type. If you slipt them into two and join them into one record then you can create a new field, DesiredPostalCode in address table as below:

if(isNull(Postal_PostalCode),Home_PostalCode,Postal_PostalCode).

This should solve your problem.

Kiran.

View solution in original post

1 Reply
Not applicable

I think you are having two records, one for each of the address type. If you slipt them into two and join them into one record then you can create a new field, DesiredPostalCode in address table as below:

if(isNull(Postal_PostalCode),Home_PostalCode,Postal_PostalCode).

This should solve your problem.

Kiran.