Suppose I have the following very simple data warehouse:
section application;
car:
LOAD * INLINE
[
CAR,USER
GETZ,George
];
person:
LOAD * INLINE
[
USER
George
Maria
];
As you can see, USER George has a CAR GETZ, while USER Maria has no car.
Is it possible to set the section access up, using reduction field=CAR, so that a user can only see Maria, who has a null value on CAR?
I have read COUNTLESS posts. Many say to put an empty string- that doesn't work. I have also seen multiple "Answers" having sample qvds attached - and most of them use a single table with an empty string value to make the test, which then seems to work with the empty string value at section access. Of course, this is not the case I'm interested, as the empty string value is still different than a missing/nulul value