Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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 ?
=If(IsNull(INTRASTAT),[Intrastat code],INTRASTAT)
=If(IsNull(INTRASTAT),[Intrastat code],INTRASTAT)
@MarcoWedel Thanks this worked!