Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Pierremeesters
Contributor II
Contributor II

use one value if both are filled

hi,

i'm combining 2 database with somewhat the same values. i'm using this if statement:

=if(isnull(INTRASTAT),[Intrastat code], if(isnull([Intrastat code]),[INTRASTAT])). 

But there are some value's that are in both "INTRASTAT"  and " intrastat code ". 

when that is the case none is used. How do i make it that if both value's are filled it uses just INTRASTAT ?  

Labels (1)
1 Solution

Accepted Solutions
MarcoWedel

=If(IsNull(INTRASTAT),[Intrastat code],INTRASTAT)

View solution in original post

2 Replies
MarcoWedel

=If(IsNull(INTRASTAT),[Intrastat code],INTRASTAT)
Pierremeesters
Contributor II
Contributor II
Author

@MarcoWedel  Thanks this worked!