Creating a DAX measure that filters on a Boolean field always evaluates to BLANK() when:
If either of the above is not true, then the measure evaluates correctly. Here are steps to re-create:
create table boolean_test
(
id int identity,
is_weekend bit
)
insert into boolean_test values(1)
insert into boolean_test values(1)
insert into boolean_test values(0)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.