Dear all,
I want your help in that, I want to filter some specific output column so I want to use the function (if it is not null x column and y column and z column then True else if F how can I do that? Any help?
Solved! Go to Solution.
!IsNull([XColumn]) AND !IsNull([YColumn]) AND !IsNull([ZColumn])
If you put this in the custom filter it will only pass through records if the x, y, and z columns ALL contain values in them.
IsNull() is the main function that checks if a value is null. The exclamation mark means NOT, so by saying !IsNull(), you are saying only pass the values through if they are not null. Let me know if this helps!