Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
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.